diff options
author | Serguei Katkov <serguei.katkov@azul.com> | 2017-11-21 05:31:47 +0000 |
---|---|---|
committer | Serguei Katkov <serguei.katkov@azul.com> | 2017-11-21 05:31:47 +0000 |
commit | fc1ff29966786694ed4418372914842b4e6f817b (patch) | |
tree | 4e1661a1469252b9fe879cc58985229cabf36a54 /llvm/lib/CodeGen/CodeGenPrepare.cpp | |
parent | 3cea36f03e8c0b02c59e00ddcd228669f7437851 (diff) | |
download | bcm5719-llvm-fc1ff29966786694ed4418372914842b4e6f817b.tar.gz bcm5719-llvm-fc1ff29966786694ed4418372914842b4e6f817b.zip |
[CGP] Enable complex addr mode (2nd attempt)
2nd attempt to enable complex addr modes after
fix of the crash by rL318638.
llvm-svn: 318728
Diffstat (limited to 'llvm/lib/CodeGen/CodeGenPrepare.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGenPrepare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index e60e1e2d294..224b0c5214e 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -190,7 +190,7 @@ EnableTypePromotionMerge("cgp-type-promotion-merge", cl::Hidden, " the other."), cl::init(true)); static cl::opt<bool> DisableComplexAddrModes( - "disable-complex-addr-modes", cl::Hidden, cl::init(true), + "disable-complex-addr-modes", cl::Hidden, cl::init(false), cl::desc("Disables combining addressing modes with different parts " "in optimizeMemoryInst.")); |