commit | 63bf29b5b1c741038d6d502d62721cac0d2760b4 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Jan 20 01:15:41 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Jan 20 01:15:41 2009 +0000 |
tree | ab667f7f63e56198396cd700bd7a440622b7059e | |
parent | 8289b05c4cc9c41f5c6c2e3807399551f2934fa9 [diff] [blame] |
another fix for PR3354 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62561 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index 1a4f573..d891eeb 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp
@@ -1559,6 +1559,11 @@ // fold the conditions into logical ops and one cond br. if (&BB->front() != BI) return false; + + + if (ConstantExpr *CE = dyn_cast<ConstantExpr>(BI->getCondition())) + if (CE->canTrap()) + return false; int PBIOp, BIOp; if (PBI->getSuccessor(0) == BI->getSuccessor(0))