From 6f9dab906e043312a80ec977a43809b18138f2d8 Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Thu, 25 Aug 2016 22:32:10 +0000 Subject: [PATCH] [mips] flip from =v to =r - let the compiler choose a temp register. =v is some ye olde gcc "use this specific register as the temp register" thing that they've deprecated and clang/llvm doesn't implement. Poked again and again by: sbruno --- libexec/rtld-elf/mips/reloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/rtld-elf/mips/reloc.c b/libexec/rtld-elf/mips/reloc.c index bd75716b270..0f4a5d66bd1 100644 --- a/libexec/rtld-elf/mips/reloc.c +++ b/libexec/rtld-elf/mips/reloc.c @@ -645,7 +645,7 @@ _mips_get_tls(void) ".set\tmips64r2\n\t" "rdhwr\t%0, $29\n\t" ".set\tpop" - : "=v" (_rv)); + : "=r" (_rv)); /* * XXXSS See 'git show c6be4f4d2d1b71c04de5d3bbb6933ce2dbcdb317' * @@ -670,7 +670,7 @@ _mips_get_tls(void) ".set\tmips32r2\n\t" "rdhwr\t%0, $29\n\t" ".set\tpop" - : "=v" (_rv)); + : "=r" (_rv)); /* * XXXSS See 'git show c6be4f4d2d1b71c04de5d3bbb6933ce2dbcdb317' *