diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-05 17:41:34 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-05 17:41:34 +0000 |
commit | 7a50c236e9a72eec1d3c21794d50270047a14de6 (patch) | |
tree | 0710e82757b3586d0dde51f853d8a4976410f57b | |
parent | 02b9a0f19ab04451b7c480064b3daa30f786d249 (diff) |
Changes to parameter attribute syntax.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32919 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/Alpha/i32_sub_1.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/Alpha/zapnot.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/Alpha/i32_sub_1.ll b/test/CodeGen/Alpha/i32_sub_1.ll index 45185f03fe..9d8cb09734 100644 --- a/test/CodeGen/Alpha/i32_sub_1.ll +++ b/test/CodeGen/Alpha/i32_sub_1.ll @@ -3,7 +3,7 @@ implementation ; Functions: -define i32 @sext %foo(i32 @sext %x) { +define i32 %foo(i32 sext %x) sext { entry: %tmp.1 = add i32 %x, -1 ; <int> [#uses=1] ret i32 %tmp.1 diff --git a/test/CodeGen/Alpha/zapnot.ll b/test/CodeGen/Alpha/zapnot.ll index aaeaa115d4..8d1fa111be 100644 --- a/test/CodeGen/Alpha/zapnot.ll +++ b/test/CodeGen/Alpha/zapnot.ll @@ -3,7 +3,7 @@ implementation ; Functions: -define i16 @zext %foo(i64 %y) { +define i16 %foo(i64 %y) zext { entry: %tmp.1 = trunc i64 %y to i16 ; <ushort> [#uses=1] ret i16 %tmp.1 |