aboutsummaryrefslogtreecommitdiff
path: root/test/msan/vector_select.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/msan/vector_select.cc')
-rw-r--r--test/msan/vector_select.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/msan/vector_select.cc b/test/msan/vector_select.cc
index afeb1ad50c8b..0cf116497801 100644
--- a/test/msan/vector_select.cc
+++ b/test/msan/vector_select.cc
@@ -1,5 +1,5 @@
-// RUN: %clangxx_msan -m64 -O0 %s -c -o %t
-// RUN: %clangxx_msan -m64 -O3 %s -c -o %t
+// RUN: %clangxx_msan -O0 %s -c -o %t
+// RUN: %clangxx_msan -O3 %s -c -o %t
// Regression test for MemorySanitizer instrumentation of a select instruction
// with vector arguments.
@@ -11,7 +11,7 @@ __m128d select(bool b, __m128d c, __m128d d)
{
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)