http://llvm.org/bugs/show_bug.cgi?id=14894
Ted Kremenek <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |INVALID --- Comment #1 from Ted Kremenek <[email protected]> 2013-01-10 12:00:58 CST --- c++-analyzer just wraps running "clang". I don't think SSE3 gets defined unless you enable SSE3, e.g.: $ touch foo.c $ clang -msse3 foo.c -E -dM | grep SSE #define __SSE2_MATH__ 1 #define __SSE2__ 1 #define __SSE3__ 1 #define __SSE_MATH__ 1 #define __SSE__ 1 #define __SSSE3__ 1 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
