X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FAssembler%2F2002-08-15-CastAmbiguity.ll;h=c71652446d6f08fe56754afc854d963ec9fa7509;hb=e502a6aad38cccb861eac7dfdde543e4ff248b9f;hp=ce1ce0701d3cd4c47642e8e1a2497bbaa1b21ab4;hpb=e7e3f2e5cd786f6cca267210b3d185b2a4a037bd;p=oota-llvm.git diff --git a/test/Assembler/2002-08-15-CastAmbiguity.ll b/test/Assembler/2002-08-15-CastAmbiguity.ll index ce1ce0701d3..c71652446d6 100644 --- a/test/Assembler/2002-08-15-CastAmbiguity.ll +++ b/test/Assembler/2002-08-15-CastAmbiguity.ll @@ -1,10 +1,6 @@ -; RUN: llvm-as < %s -o /dev/null -f - - - - -void %test(int %X) { - call void (int)* cast (void(int) * %test to void(int) *) (int 6) - ret void +; RUN: llvm-as %s -o /dev/null +define void @test(i32 %X) { + call void @test( i32 6 ) + ret void }