summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Scalar/Sink.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2018-08-26 08:56:42 +0000
committerChandler Carruth <chandlerc@gmail.com>2018-08-26 08:56:42 +0000
commit698fbe7b59a77888f108fbfe37e17a1db0cace8c (patch)
treedbb7aba182f9903a5ae73514df768157d5a25c10 /llvm/lib/Transforms/Scalar/Sink.cpp
parent96fc1de77da3efd1ec1f5cbbb4936de4bac8105d (diff)
downloadbcm5719-llvm-698fbe7b59a77888f108fbfe37e17a1db0cace8c.tar.gz
bcm5719-llvm-698fbe7b59a77888f108fbfe37e17a1db0cace8c.zip
[IR] Sink `isExceptional` predicate to `Instruction`, rename it to
`isExceptionalTermiantor` and implement it for opcodes as well following the common pattern in `Instruction`. Part of removing `TerminatorInst` from the `Instruction` type hierarchy to make it easier to share logic and interfaces between instructions that are both terminators and not terminators. llvm-svn: 340699
Diffstat (limited to 'llvm/lib/Transforms/Scalar/Sink.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/Sink.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/Sink.cpp b/llvm/lib/Transforms/Scalar/Sink.cpp
index ca6b93e0b4a..b59d52f2ecf 100644
--- a/llvm/lib/Transforms/Scalar/Sink.cpp
+++ b/llvm/lib/Transforms/Scalar/Sink.cpp
@@ -104,7 +104,7 @@ static bool IsAcceptableTarget(Instruction *Inst, BasicBlock *SuccToSinkTo,
// It's never legal to sink an instruction into a block which terminates in an
// EH-pad.
- if (SuccToSinkTo->getTerminator()->isExceptional())
+ if (SuccToSinkTo->getTerminator()->isExceptionalTerminator())
return false;
// If the block has multiple predecessors, this would introduce computation
OpenPOWER on IntegriCloud