On Mon, Mar 22, 2010 at 12:46 PM, Chris Lattner <[email protected]> wrote: > > On Mar 22, 2010, at 11:51 AM, Chris Lattner wrote: > >> Author: lattner >> Date: Mon Mar 22 13:51:09 2010 >> New Revision: 99197 >> >> URL: http://llvm.org/viewvc/llvm-project?rev=99197&view=rev >> Log: >> hopefully fix this on non-sse2 hosts. Shouldn't an apple-darwin10 >> triple imply sse2? > > Daniel, do shouldn't a "darwin" triple imply SSE2, even on the MSVC builder? > Is this a bug or am I missing something?
Yes, it should. You added -msse3 though, so are you asking about the right thing? - Daniel > -Chris > >> >> Modified: >> cfe/trunk/test/Headers/c89.c >> >> Modified: cfe/trunk/test/Headers/c89.c >> URL: >> http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Headers/c89.c?rev=99197&r1=99196&r2=99197&view=diff >> ============================================================================== >> --- cfe/trunk/test/Headers/c89.c (original) >> +++ cfe/trunk/test/Headers/c89.c Mon Mar 22 13:51:09 2010 >> @@ -1,4 +1,4 @@ >> -// RUN: %clang -triple=i386-apple-darwin10 -fsyntax-only -verify -std=c89 %s >> +// RUN: %clang -triple=i386-apple-darwin10 -msse3 -fsyntax-only -verify >> -std=c89 %s >> >> // PR6658 >> #include <xmmintrin.h> >> >> >> _______________________________________________ >> cfe-commits mailing list >> [email protected] >> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits > > _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
