[llvm-commits] [llvm] r113056 - /llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Eric Christopher echristo at apple.com
Sat Sep 4 00:44:28 PDT 2010


On Sep 3, 2010, at 7:36 PM, Bruno Cardoso Lopes wrote:

>   bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
>   bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
> +  bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();

I understand it's probably just a side effect, but

"HasSSE2" = "HasSSE2 or this other thing"

reads somewhat oddly :)

-eric



More information about the llvm-commits mailing list