diff options
author | Hal Finkel <hfinkel@anl.gov> | 2012-06-04 02:21:00 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2012-06-04 02:21:00 +0000 |
commit | 77838f9ca974bda956f4a93c20bb4307cf0c470f (patch) | |
tree | 7132aa088bcd3babe7a63ffaab39ee5d48fabc78 /test/CodeGen/PowerPC/mem_update.ll | |
parent | 761cb0675676f894afa675148bd4e86dcfabd27f (diff) |
Enable generating PPC pre-increment (r+imm) instructions by default.
It seems that this no longer causes test suite failures on PPC64 (after r157159),
and often gives a performance benefit, so it can be enabled by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157911 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/mem_update.ll')
-rw-r--r-- | test/CodeGen/PowerPC/mem_update.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/PowerPC/mem_update.ll b/test/CodeGen/PowerPC/mem_update.ll index 17e7e2849c..39af11a3d5 100644 --- a/test/CodeGen/PowerPC/mem_update.ll +++ b/test/CodeGen/PowerPC/mem_update.ll @@ -1,6 +1,6 @@ -; RUN: llc < %s -march=ppc32 -enable-ppc-preinc | \ +; RUN: llc < %s -march=ppc32 | \ ; RUN: not grep addi -; RUN: llc < %s -march=ppc64 -enable-ppc-preinc | \ +; RUN: llc < %s -march=ppc64 | \ ; RUN: not grep addi @Glob = global i64 4 |