diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-01-11 18:36:12 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-01-11 18:36:12 +0000 |
commit | 11f0e7b158d669a8c630068a0d8bdd107caef487 (patch) | |
tree | e69f5d7c4d54a3a3856372d7526c5e3675e34819 /test/CodeGen/X86/fold-and-shift.ll | |
parent | 313c7038319422cff0b2ea1015e180575cab4b7a (diff) | |
download | external_llvm-11f0e7b158d669a8c630068a0d8bdd107caef487.zip external_llvm-11f0e7b158d669a8c630068a0d8bdd107caef487.tar.gz external_llvm-11f0e7b158d669a8c630068a0d8bdd107caef487.tar.bz2 |
Revert r147945 which disabled an addressing mode transformation. I had
hoped this would revive one of the llvm-gcc selfhost build bots, but it
didn't so it doesn't appear that my transform is the culprit.
If anyone else is seeing failures, please let me know!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147957 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/fold-and-shift.ll')
-rw-r--r-- | test/CodeGen/X86/fold-and-shift.ll | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/CodeGen/X86/fold-and-shift.ll b/test/CodeGen/X86/fold-and-shift.ll index 816ab97..93baa0e 100644 --- a/test/CodeGen/X86/fold-and-shift.ll +++ b/test/CodeGen/X86/fold-and-shift.ll @@ -39,11 +39,11 @@ define i32 @t3(i16* %i.ptr, i32* %arr) { ; To make matters worse, because of the two-phase zext of %i and their reuse in ; the function, the DAG can get confusing trying to re-use both of them and ; prevent easy analysis of the mask in order to match this. -; BROKEN: t3: -; BROKEN-NOT: and -; BROKEN: shrl -; BROKEN: addl (%{{...}},%{{...}},4), -; BROKEN: ret +; CHECK: t3: +; CHECK-NOT: and +; CHECK: shrl +; CHECK: addl (%{{...}},%{{...}},4), +; CHECK: ret entry: %i = load i16* %i.ptr @@ -58,11 +58,11 @@ entry: define i32 @t4(i16* %i.ptr, i32* %arr) { ; A version of @t3 that has more zero extends and more re-use of intermediate ; values. This exercise slightly different bits of canonicalization. -; BROKEN: t4: -; BROKEN-NOT: and -; BROKEN: shrl -; BROKEN: addl (%{{...}},%{{...}},4), -; BROKEN: ret +; CHECK: t4: +; CHECK-NOT: and +; CHECK: shrl +; CHECK: addl (%{{...}},%{{...}},4), +; CHECK: ret entry: %i = load i16* %i.ptr |