[PATCH] D37829: [mips] Fix sem_init_glibc test for MIPS.
Simon Dardis via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 14 03:39:41 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL313248: [mips] Fix sem_init_glibc test for MIPS. (authored by sdardis).
Repository:
rL LLVM
https://reviews.llvm.org/D37829
Files:
compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/sem_init_glibc.cc
Index: compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/sem_init_glibc.cc
===================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/sem_init_glibc.cc
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Linux/sem_init_glibc.cc
@@ -13,9 +13,11 @@
typedef uint64_t semval_t;
// This condition needs to correspond to __HAVE_64B_ATOMICS macro in glibc.
-#elif (defined(__x86_64__) || defined(__aarch64__) || defined(__powerpc64__) || \
- defined(__s390x__) || defined(__sparc64__) || defined(__alpha__) || \
- defined(__ia64__) || defined(__m68k__)) && __GLIBC_PREREQ(2, 21)
+#elif (defined(__x86_64__) || defined(__aarch64__) || \
+ defined(__powerpc64__) || defined(__s390x__) || defined(__sparc64__) || \
+ defined(__alpha__) || defined(__ia64__) || defined(__m68k__) || \
+ (defined(__mips64) || _MIPS_SIM == _ABI64)) && \
+ __GLIBC_PREREQ(2, 21)
typedef uint64_t semval_t;
#else
typedef unsigned semval_t;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D37829.115193.patch
Type: text/x-patch
Size: 1079 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170914/37260d6a/attachment.bin>
More information about the llvm-commits
mailing list