forked from OSchip/llvm-project
Properly parenthesize this expression, fixing a real bug in the new
-full-lsr code, as well as a GCC warning. llvm-svn: 65288
This commit is contained in:
parent
d853864705
commit
f394e58af5
|
@ -1536,7 +1536,7 @@ bool LoopStrengthReduce::ShouldUseFullStrengthReductionMode(
|
|||
// strength reduction would increase register pressure.
|
||||
do {
|
||||
SCEV *CurImm = UsersToProcess[i].Imm;
|
||||
if (CurImm || Imm && CurImm != Imm) {
|
||||
if ((CurImm || Imm) && CurImm != Imm) {
|
||||
if (!CurImm) CurImm = SE->getIntegerSCEV(0, Stride->getType());
|
||||
if (!Imm) Imm = SE->getIntegerSCEV(0, Stride->getType());
|
||||
const Instruction *Inst = UsersToProcess[i].Inst;
|
||||
|
|
Loading…
Reference in New Issue