summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
diff options
context:
space:
mode:
authorNemanja Ivanovic <nemanja.i.ibm@gmail.com>2017-10-20 00:36:46 +0000
committerNemanja Ivanovic <nemanja.i.ibm@gmail.com>2017-10-20 00:36:46 +0000
commit0026c06e1169391b1525339fcceca06c6755e2fc (patch)
treefaeaafb4d50ae730a039e0680c31070915faeab0 /llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
parentdaae9528b752363b158adf4708ab586bb3418894 (diff)
downloadbcm5719-llvm-0026c06e1169391b1525339fcceca06c6755e2fc.tar.gz
bcm5719-llvm-0026c06e1169391b1525339fcceca06c6755e2fc.zip
Disabling the transformation introduced in r315888
The commit at https://reviews.llvm.org/rL315888 is causing some failures with internal testing. Disabling this code until we can resolve the issues. llvm-svn: 316199
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCMIPeephole.cpp')
-rw-r--r--llvm/lib/Target/PowerPC/PPCMIPeephole.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp b/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
index d135287a845..80b7ac24345 100644
--- a/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
+++ b/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
@@ -43,12 +43,12 @@ STATISTIC(NumOptADDLIs, "Number of optimized ADD instruction fed by LI");
static cl::opt<bool>
EnableSExtElimination("ppc-eliminate-signext",
cl::desc("enable elimination of sign-extensions"),
- cl::init(true), cl::Hidden);
+ cl::init(false), cl::Hidden);
static cl::opt<bool>
EnableZExtElimination("ppc-eliminate-zeroext",
cl::desc("enable elimination of zero-extensions"),
- cl::init(true), cl::Hidden);
+ cl::init(false), cl::Hidden);
namespace llvm {
void initializePPCMIPeepholePass(PassRegistry&);
OpenPOWER on IntegriCloud