aboutsummaryrefslogtreecommitdiff
path: root/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Assembler/2003-04-25-UnresolvedGlobalReference.ll')
-rw-r--r--test/Assembler/2003-04-25-UnresolvedGlobalReference.ll10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll b/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll
index 9d128f823e..663acbbb22 100644
--- a/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll
+++ b/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll
@@ -1,9 +1,7 @@
-; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
-
+; RUN: llvm-as < %s -o /dev/null -f
; There should be absolutely no problem with this testcase.
-implementation
-
-int %test(int %arg1, int %arg2) {
- ret int cast (int (int, int)* %test to int)
+define i32 @test(i32 %arg1, i32 %arg2) {
+ ret i32 ptrtoint (i32 (i32, i32)* @test to i32)
}
+