diff options
author | Tobias Grosser <tobias@grosser.es> | 2017-01-16 14:08:10 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2017-01-16 14:08:10 +0000 |
commit | 21a059af09620306404f3b6bf31aa975c49d2ca2 (patch) | |
tree | c1460890c5a744a8cee8824bc53d2384ac3d6e76 /polly/lib/Support/SCEVValidator.cpp | |
parent | 92fd612c8453ec693a658e3a189bc74392143872 (diff) | |
download | bcm5719-llvm-21a059af09620306404f3b6bf31aa975c49d2ca2.tar.gz bcm5719-llvm-21a059af09620306404f3b6bf31aa975c49d2ca2.zip |
Adjust formatting to commit r292110 [NFC]
llvm-svn: 292123
Diffstat (limited to 'polly/lib/Support/SCEVValidator.cpp')
-rw-r--r-- | polly/lib/Support/SCEVValidator.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/polly/lib/Support/SCEVValidator.cpp b/polly/lib/Support/SCEVValidator.cpp index 848357f5afb..d5cc338a2bf 100644 --- a/polly/lib/Support/SCEVValidator.cpp +++ b/polly/lib/Support/SCEVValidator.cpp @@ -487,8 +487,9 @@ public: Values.insert(Unknown->getValue()); Instruction *Inst = dyn_cast<Instruction>(Unknown->getValue()); - if (!Inst || (Inst->getOpcode() != Instruction::SRem && - Inst->getOpcode() != Instruction::SDiv)) + if (!Inst || + (Inst->getOpcode() != Instruction::SRem && + Inst->getOpcode() != Instruction::SDiv)) return false; auto *Dividend = SE.getSCEV(Inst->getOperand(1)); |