diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-09 23:31:36 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-09 23:31:36 +0000 |
commit | 1134aae4e743290da2ad29a7ac76d3a1f9dcfce8 (patch) | |
tree | 05569eb1e6e4b27731f81088a79f4290d3cf4ac5 /test | |
parent | 81a6995243380668e6f991fa4e11dd0a6e37e030 (diff) | |
download | external_llvm-1134aae4e743290da2ad29a7ac76d3a1f9dcfce8.zip external_llvm-1134aae4e743290da2ad29a7ac76d3a1f9dcfce8.tar.gz external_llvm-1134aae4e743290da2ad29a7ac76d3a1f9dcfce8.tar.bz2 |
Revert r161633-161634 "Partition use lists so defs always come before uses."
These commits broke a number of buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161640 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/MSP430/Inst8rr.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/X86/xor.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/MSP430/Inst8rr.ll b/test/CodeGen/MSP430/Inst8rr.ll index b9c17d9..45342e2 100644 --- a/test/CodeGen/MSP430/Inst8rr.ll +++ b/test/CodeGen/MSP430/Inst8rr.ll @@ -4,7 +4,7 @@ target triple = "msp430-generic-generic" define i8 @mov(i8 %a, i8 %b) nounwind { ; CHECK: mov: -; CHECK: mov.{{[bw]}} r14, r15 +; CHECK: mov.b r14, r15 ret i8 %b } diff --git a/test/CodeGen/X86/xor.ll b/test/CodeGen/X86/xor.ll index 996bfc4..73416ef 100644 --- a/test/CodeGen/X86/xor.ll +++ b/test/CodeGen/X86/xor.ll @@ -31,7 +31,7 @@ entry: ; X64: test3: ; X64: notl ; X64: andl -; X64: shrl +; X64: shrl %eax ; X64: ret ; X32: test3: |