summaryrefslogtreecommitdiff
path: root/lib/msan/lit_tests/vector_select.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msan/lit_tests/vector_select.cc')
-rw-r--r--lib/msan/lit_tests/vector_select.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/msan/lit_tests/vector_select.cc b/lib/msan/lit_tests/vector_select.cc
deleted file mode 100644
index e8d55423293c4..0000000000000
--- a/lib/msan/lit_tests/vector_select.cc
+++ /dev/null
@@ -1,13 +0,0 @@
-// RUN: %clangxx_msan -m64 -O0 %s -c -o %t
-// RUN: %clangxx_msan -m64 -O3 %s -c -o %t
-
-// Regression test for MemorySanitizer instrumentation of a select instruction
-// with vector arguments.
-
-#include <emmintrin.h>
-
-__m128d select(bool b, __m128d c, __m128d d)
-{
- return b ? c : d;
-}
-