[compiler-rt] r241400 - Enable this test for PPC64.

Jay Foad jay.foad at gmail.com
Sun Jul 5 01:11:36 PDT 2015


Author: foad
Date: Sun Jul  5 03:11:36 2015
New Revision: 241400

URL: http://llvm.org/viewvc/llvm-project?rev=241400&view=rev
Log:
Enable this test for PPC64.

Modified:
    compiler-rt/trunk/test/msan/vector_select.cc

Modified: compiler-rt/trunk/test/msan/vector_select.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/vector_select.cc?rev=241400&r1=241399&r2=241400&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/vector_select.cc (original)
+++ compiler-rt/trunk/test/msan/vector_select.cc Sun Jul  5 03:11:36 2015
@@ -11,7 +11,7 @@ __m128d select(bool b, __m128d c, __m128
 {
   return b ? c : d;
 }
-#elif defined (__mips64)
+#elif defined (__mips64) || defined (__powerpc64__)
 typedef double __w64d __attribute__ ((vector_size(16)));
 
 __w64d select(bool b, __w64d c, __w64d d)





More information about the llvm-commits mailing list