aboutsummaryrefslogtreecommitdiff
path: root/test/Feature/prototype.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/prototype.ll')
-rw-r--r--test/Feature/prototype.ll15
1 files changed, 6 insertions, 9 deletions
diff --git a/test/Feature/prototype.ll b/test/Feature/prototype.ll
index 9bab73f7fb..3754a1d959 100644
--- a/test/Feature/prototype.ll
+++ b/test/Feature/prototype.ll
@@ -1,14 +1,11 @@
-; RUN: llvm-upgrade < %s | llvm-as | llvm-dis > %t1.ll
+; RUN: llvm-as < %s | llvm-dis > %t1.ll
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
+declare i32 @bar(i32)
-declare int "bar"(int %in)
-
-int "foo"(int %blah)
-begin
- %xx = call int %bar(int %blah)
- ret int %xx
-end
+define i32 @foo(i32 %blah) {
+ %xx = call i32 @bar( i32 %blah ) ; <i32> [#uses=1]
+ ret i32 %xx
+}