forked from OSchip/llvm-project
Quiet gcc's -Wparenthesis warning. No functionality change.
llvm-svn: 171044
This commit is contained in:
parent
fb43258080
commit
521e0d59f3
|
@ -17966,7 +17966,7 @@ X86VectorTargetTransformInfo::getMemoryOpCost(unsigned Opcode, Type *Src,
|
|||
unsigned AddressSpace) const {
|
||||
// Legalize the type.
|
||||
std::pair<unsigned, MVT> LT = getTypeLegalizationCost(Src);
|
||||
assert(Opcode == Instruction::Load || Opcode == Instruction::Store &&
|
||||
assert((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
|
||||
"Invalid Opcode");
|
||||
|
||||
const X86Subtarget &ST =
|
||||
|
|
Loading…
Reference in New Issue