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/Alpha/i32_sub_1.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/Alpha/i32_sub_1.ll')
-rw-r--r-- | llvm/test/CodeGen/Alpha/i32_sub_1.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/Alpha/i32_sub_1.ll b/llvm/test/CodeGen/Alpha/i32_sub_1.ll index ffeafbd7593..35b1d08dbd5 100644 --- a/llvm/test/CodeGen/Alpha/i32_sub_1.ll +++ b/llvm/test/CodeGen/Alpha/i32_sub_1.ll @@ -2,7 +2,7 @@ ; RUN: llc < %s -march=alpha | grep -i {subl \$16,1,\$0} -define i32 @foo(i32 signext %x) signext { +define signext i32 @foo(i32 signext %x) { entry: %tmp.1 = add i32 %x, -1 ; <int> [#uses=1] ret i32 %tmp.1 |