summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/CodeGenPrepare.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-06-29 19:58:21 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-06-29 19:58:21 +0000
commit6c50551e9a555230f34e1abb467d575d8f11df19 (patch)
tree56102c9e4580c157fc3c3092507d734cb8727ede /lib/Transforms/Scalar/CodeGenPrepare.cpp
parent54d69668b22b8c37aa6e45f14445f3988cc430d4 (diff)
downloadllvm-6c50551e9a555230f34e1abb467d575d8f11df19.tar.gz
llvm-6c50551e9a555230f34e1abb467d575d8f11df19.tar.bz2
llvm-6c50551e9a555230f34e1abb467d575d8f11df19.tar.xz
CodeGenPrepare: Don't crash when TLI is not available.
This happens when codegenprepare is invoked via opt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159457 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/CodeGenPrepare.cpp')
-rw-r--r--lib/Transforms/Scalar/CodeGenPrepare.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/CodeGenPrepare.cpp b/lib/Transforms/Scalar/CodeGenPrepare.cpp
index c95d36af0b..cbc089ab78 100644
--- a/lib/Transforms/Scalar/CodeGenPrepare.cpp
+++ b/lib/Transforms/Scalar/CodeGenPrepare.cpp
@@ -1133,7 +1133,8 @@ static bool isFormingBranchFromSelectProfitable(SelectInst *SI) {
bool CodeGenPrepare::OptimizeSelectInst(SelectInst *SI) {
// If we have a SelectInst that will likely profit from branch prediction,
// turn it into a branch.
- if (DisableSelectToBranch || OptSize || !TLI->isPredictableSelectExpensive())
+ if (DisableSelectToBranch || OptSize || !TLI ||
+ !TLI->isPredictableSelectExpensive())
return false;
if (!SI->getCondition()->getType()->isIntegerTy(1) ||