diff options
| author | Sam Parker <sam.parker@arm.com> | 2019-12-31 11:31:06 +0000 |
|---|---|---|
| committer | Sam Parker <sam.parker@arm.com> | 2019-12-31 11:31:06 +0000 |
| commit | b409f73e1fd8e498a2bff4208eeadf023959a0f7 (patch) | |
| tree | 02c78bf035f87c51c48c7e5083985fce099d3c03 | |
| parent | 0c7ca82161b519856bb1d54e181b578dc067cd3e (diff) | |
| download | bcm5719-llvm-b409f73e1fd8e498a2bff4208eeadf023959a0f7.tar.gz bcm5719-llvm-b409f73e1fd8e498a2bff4208eeadf023959a0f7.zip | |
[ARM][TypePromotion] Re-enable by default
Re-enable the pass after it was reverted and the bug fixed.
| -rw-r--r-- | llvm/lib/CodeGen/TypePromotion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/TypePromotion.cpp b/llvm/lib/CodeGen/TypePromotion.cpp index cf4ce2eb580..c547a23f93f 100644 --- a/llvm/lib/CodeGen/TypePromotion.cpp +++ b/llvm/lib/CodeGen/TypePromotion.cpp @@ -47,7 +47,7 @@ using namespace llvm; static cl::opt<bool> -DisablePromotion("disable-type-promotion", cl::Hidden, cl::init(true), +DisablePromotion("disable-type-promotion", cl::Hidden, cl::init(false), cl::desc("Disable type promotion pass")); // The goal of this pass is to enable more efficient code generation for |

