File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -52398,8 +52398,6 @@ static bool needCarryOrOverflowFlag(SDValue Flags) {
52398
52398
CC = (X86::CondCode)User->getConstantOperandVal(0);
52399
52399
break;
52400
52400
case X86ISD::BRCOND:
52401
- CC = (X86::CondCode)User->getConstantOperandVal(2);
52402
- break;
52403
52401
case X86ISD::CMOV:
52404
52402
CC = (X86::CondCode)User->getConstantOperandVal(2);
52405
52403
break;
@@ -52428,10 +52426,14 @@ static bool onlyZeroFlagUsed(SDValue Flags) {
52428
52426
default:
52429
52427
// Be conservative.
52430
52428
return false;
52431
- case X86ISD::SETCC: CCOpNo = 0; break;
52432
- case X86ISD::SETCC_CARRY: CCOpNo = 0; break;
52433
- case X86ISD::BRCOND: CCOpNo = 2; break;
52434
- case X86ISD::CMOV: CCOpNo = 2; break;
52429
+ case X86ISD::SETCC:
52430
+ case X86ISD::SETCC_CARRY:
52431
+ CCOpNo = 0;
52432
+ break;
52433
+ case X86ISD::BRCOND:
52434
+ case X86ISD::CMOV:
52435
+ CCOpNo = 2;
52436
+ break;
52435
52437
}
52436
52438
52437
52439
X86::CondCode CC = (X86::CondCode)User->getConstantOperandVal(CCOpNo);
You can’t perform that action at this time.
0 commit comments