[x86] avoid compile-time warning for parens; NFC

This commit is contained in:
Sanjay Patel 2022-02-07 16:59:50 -05:00
parent bb39ad43ce
commit be059a1263
1 changed files with 1 additions and 1 deletions

View File

@ -465,7 +465,7 @@ namespace {
// Copy flags to the EFLAGS register and glue it to next node.
unsigned Opcode = N->getOpcode();
assert(Opcode == X86ISD::SBB || Opcode == X86ISD::SETCC_CARRY &&
assert((Opcode == X86ISD::SBB || Opcode == X86ISD::SETCC_CARRY) &&
"Unexpected opcode for SBB materialization");
unsigned FlagOpIndex = Opcode == X86ISD::SBB ? 2 : 1;
SDValue EFLAGS =