diff options
Diffstat (limited to 'llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h')
-rw-r--r-- | llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h b/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h index ed6b1b1853b..1afb9c7f954 100644 --- a/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h +++ b/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h @@ -39,7 +39,8 @@ public: : SimplifyCFGPass(SimplifyCFGOptions() .forwardSwitchCondToPhi(false) .convertSwitchToLookupTable(false) - .needCanonicalLoops(true)) {} + .needCanonicalLoops(true) + .sinkCommonInsts(false)) {} /// Construct a pass with optional optimizations. |