X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FAssembler%2F2003-04-25-UnresolvedGlobalReference.ll;h=f1a5ed7b56b2ab1583785b5b18f9ce6cf148fd05;hb=d5ce456161b81a50c2e0dcf948192c1a4e1c8d22;hp=9d128f823ec8f480ac8653549ef986af5fef97b4;hpb=d7c2c2f753ae80257798fd25a879ec17df953c5b;p=oota-llvm.git diff --git a/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll b/test/Assembler/2003-04-25-UnresolvedGlobalReference.ll index 9d128f823ec..f1a5ed7b56b 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 ; 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) } +