diff options
Diffstat (limited to 'polly/lib/Support/ScopHelper.cpp')
| -rw-r--r-- | polly/lib/Support/ScopHelper.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/polly/lib/Support/ScopHelper.cpp b/polly/lib/Support/ScopHelper.cpp index 71fc9e887a6..6dd52d9a0e9 100644 --- a/polly/lib/Support/ScopHelper.cpp +++ b/polly/lib/Support/ScopHelper.cpp @@ -296,8 +296,9 @@ private: else IP = RTCBB->getParent()->getEntryBlock().getTerminator(); - if (!Inst || (Inst->getOpcode() != Instruction::SRem && - Inst->getOpcode() != Instruction::SDiv)) + if (!Inst || + (Inst->getOpcode() != Instruction::SRem && + Inst->getOpcode() != Instruction::SDiv)) return visitGenericInst(E, Inst, IP); const SCEV *LHSScev = SE.getSCEV(Inst->getOperand(0)); |

