X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FAssembler%2F2002-01-24-ValueRefineAbsType.ll;h=6e49674a32fb162ca8ee39d34c3f49e6c12f5809;hb=d5ce456161b81a50c2e0dcf948192c1a4e1c8d22;hp=1124254720bca3348f27ffe4d3670e4990bc9e98;hpb=e7e3f2e5cd786f6cca267210b3d185b2a4a037bd;p=oota-llvm.git diff --git a/test/Assembler/2002-01-24-ValueRefineAbsType.ll b/test/Assembler/2002-01-24-ValueRefineAbsType.ll index 1124254720b..6e49674a32f 100644 --- a/test/Assembler/2002-01-24-ValueRefineAbsType.ll +++ b/test/Assembler/2002-01-24-ValueRefineAbsType.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s -o /dev/null -f +; RUN: llvm-as %s -o /dev/null ; This testcase used to fail due to a lack of this diff in Value.cpp: ; diff -r1.16 Value.cpp @@ -13,16 +13,11 @@ ; > if (OldTy == NewTy && !OldTy->isAbstract()) ; > Ty.removeUserFromConcrete(); ; -; This was causing an assertion failure, due to the "foo" Method object never releasing -; it's reference to the opaque %bb value. +; This was causing an assertion failure, due to the "foo" Method object never +; releasing it's reference to the opaque %bb value. ; -declare void "foo"(%bb) - -%exception_descriptor = type opaque - -%bb = type int - -%exception_descriptor = type int - -implementation + +%bb = type i32 +%exception_descriptor = type i32 +declare void @foo(i32)