summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYann Sionneau <yann@sionneau.net>2020-04-05 13:35:39 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2020-04-05 14:44:09 +0200
commit8ab96759ea68faed9a758d165f4b973641d5de3e (patch)
tree8b57b261b785c80a2563052674bca8057cb82183 /test
parenta2c48a52d2d66d5a760f6f8a03ca5a96f0cc35ff (diff)
powerpc: update tls macros inline asm clobbers
This was causing a compile error for powerpc64 toolchain because r3 was both listed as clobbered and as output in inline asm. Signed-off-by: Yann Sionneau <yann@sionneau.net>
Diffstat (limited to 'test')
-rw-r--r--test/tls/tls-macros-powerpc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tls/tls-macros-powerpc.h b/test/tls/tls-macros-powerpc.h
index ef293bb..8a368fa 100644
--- a/test/tls/tls-macros-powerpc.h
+++ b/test/tls/tls-macros-powerpc.h
@@ -1,5 +1,5 @@
#define __TLS_CALL_CLOBBERS \
- "0", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", \
+ "0", "4", "5", "6", "7", "8", "9", "10", "11", "12", \
"lr", "ctr", "cr0", "cr1", "cr5", "cr6", "cr7"
/* PowerPC32 Local Exec TLS access. */