diff options
author | Jim Grosbach <grosbach@apple.com> | 2009-10-31 22:14:17 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2009-10-31 22:14:17 +0000 |
commit | 0e5c9beeedae7294de2d3b756086cb9bc3edf45e (patch) | |
tree | 24cf01a1f57d905d9466f936fdbfa0898ed10c0b | |
parent | 6b0b4b3eafa2b07b6eaf2c22e20efac96a256e0f (diff) |
Make tests more explicit about which instructions are expected.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85694 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/Thumb2/thumb2-mov2.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-mov2.ll b/test/CodeGen/Thumb2/thumb2-mov2.ll index 3d58e44fd7..a47c2a980d 100644 --- a/test/CodeGen/Thumb2/thumb2-mov2.ll +++ b/test/CodeGen/Thumb2/thumb2-mov2.ll @@ -55,10 +55,10 @@ define i32 @t2MOVTi16_test_3(i32 %a) { define i32 @t2MOVTi16_test_nomatch_1(i32 %a) { ; CHECK: t2MOVTi16_test_nomatch_1: -; CHECK: #8388608 +; CHECK: orr r0, r0, #8388608 ; CHECK: movw r1, #65535 ; CHECK-NEXT: movt r1, #154 -; CHECK: #1720320 +; CHECK: orr r0, r0, #1720320 %1 = shl i32 255, 8 %2 = shl i32 1234, 8 %3 = or i32 %1, 255 ; This gives us 0xFFFF in %3 |