git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170523
91177308-0d34-0410-b5e6-
96231b3b80d8
// 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");