diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-10 00:21:30 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-08-10 00:21:30 +0000 |
commit | c7908037d87c8f6866b872e9f6b5a7fffae5b63e (patch) | |
tree | 694e998bee8258d3058e12b5049363137832429f /test/CodeGen | |
parent | d6397eba2389e8a24d37aa56e049187c1ee75f4f (diff) | |
download | external_llvm-c7908037d87c8f6866b872e9f6b5a7fffae5b63e.zip external_llvm-c7908037d87c8f6866b872e9f6b5a7fffae5b63e.tar.gz external_llvm-c7908037d87c8f6866b872e9f6b5a7fffae5b63e.tar.bz2 |
Reapply r161633-161634 "Partition use lists so defs always come before uses.""
No changes to these patches, MRI needed to be notified when changing
uses into defs and vice versa.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161644 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-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 45342e2..b9c17d9 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.b r14, r15 +; CHECK: mov.{{[bw]}} r14, r15 ret i8 %b } diff --git a/test/CodeGen/X86/xor.ll b/test/CodeGen/X86/xor.ll index 73416ef..996bfc4 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 %eax +; X64: shrl ; X64: ret ; X32: test3: |