diff options
author | Chris Lattner <sabre@nondot.org> | 2011-06-17 03:14:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-06-17 03:14:27 +0000 |
commit | b90ed2233c9fac46bac53de5833dd5e35db10acf (patch) | |
tree | 2efdd5ccb4d397789a8fa4a9413882084472fa0b /llvm/test/CodeGen/ARM/sxt_rot.ll | |
parent | 033026ffc07ee0b7dd67c2b06259ce2be6051254 (diff) | |
download | bcm5719-llvm-b90ed2233c9fac46bac53de5833dd5e35db10acf.tar.gz bcm5719-llvm-b90ed2233c9fac46bac53de5833dd5e35db10acf.zip |
manually upgrade a bunch of tests to modern syntax, and remove some that
are either unreduced or only test old syntax.
llvm-svn: 133228
Diffstat (limited to 'llvm/test/CodeGen/ARM/sxt_rot.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/sxt_rot.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/sxt_rot.ll b/llvm/test/CodeGen/ARM/sxt_rot.ll index 4752f17f1e1..355fee30723 100644 --- a/llvm/test/CodeGen/ARM/sxt_rot.ll +++ b/llvm/test/CodeGen/ARM/sxt_rot.ll @@ -10,7 +10,7 @@ define i32 @test0(i8 %A) { ret i32 %B } -define i8 @test1(i32 %A) signext { +define signext i8 @test1(i32 %A) { %B = lshr i32 %A, 8 %C = shl i32 %A, 24 %D = or i32 %B, %C @@ -18,7 +18,7 @@ define i8 @test1(i32 %A) signext { ret i8 %E } -define i32 @test2(i32 %A, i32 %X) signext { +define signext i32 @test2(i32 %A, i32 %X) { %B = lshr i32 %A, 8 %C = shl i32 %A, 24 %D = or i32 %B, %C |