[PowerPC][NFC] Use `|=` to update `Simplified` flag

llvm-svn: 364617
This commit is contained in:
Kai Luo 2019-06-28 01:38:42 +00:00
parent 1178dc3d0b
commit c6fe8436e8
1 changed files with 1 additions and 1 deletions

View File

@ -761,7 +761,7 @@ bool PPCMIPeephole::simplifyCode(void) {
break;
}
case PPC::RLDICR: {
Simplified = emitRLDICWhenLoweringJumpTables(MI);
Simplified |= emitRLDICWhenLoweringJumpTables(MI);
break;
}
}