https://llvm.org/bugs/show_bug.cgi?id=15792

Eric Christopher <echri...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #6 from Eric Christopher <echri...@gmail.com> ---
I fixed this a while back:

echristo-macbookpro2:~/tmp> cat foo.c
#include <smmintrin.h>

int main(int argc, char** argv)
{
  __m128 y = _mm_set1_ps(argc);
  y = _mm_blendv_ps(y, y, y);
  return y[0];
}
echristo-macbookpro2:~/tmp> ~/builds/build-llvm/Debug+Asserts/bin/clang++ -flto
-msse4.1 foo.c
clang: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is
deprecated

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to