Home | History | Annotate | Download | only in msan
      1 // RUN: %clangxx_msan -m64 -O0 %s -c -o %t
      2 // RUN: %clangxx_msan -m64 -O3 %s -c -o %t
      3 
      4 // Regression test for MemorySanitizer instrumentation of a select instruction
      5 // with vector arguments.
      6 
      7 #include <emmintrin.h>
      8 
      9 __m128d select(bool b, __m128d c, __m128d d)
     10 {
     11   return b ? c : d;
     12 }
     13 
     14