X86ISelLowering.cpp: Fix warnings. [-Wlogical-op-parentheses]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 19 Dec 2012 10:12:48 +0000 (10:12 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 19 Dec 2012 10:12:48 +0000 (10:12 +0000)
llvm-svn: 170523

llvm/lib/Target/X86/X86ISelLowering.cpp

index fee9d93..93ea372 100644 (file)
@@ -15934,8 +15934,8 @@ static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
   // TODO: It is possible to support ZExt by zeroing the undef values
   // during the shuffle phase or after the shuffle.
   if (RegVT.isVector() && RegVT.isInteger() &&
-      (Ext == ISD::EXTLOAD && Subtarget->hasSSSE3() ||
-       Ext == ISD::SEXTLOAD && Subtarget->hasSSE41())){
+      ((Ext == ISD::EXTLOAD && Subtarget->hasSSSE3()) ||
+       (Ext == ISD::SEXTLOAD && Subtarget->hasSSE41()))){
     assert(MemVT != RegVT && "Cannot extend to the same type");
     assert(MemVT.isVector() && "Must load a vector from memory");