Work around a FileCheck bug, for now.
[oota-llvm.git] / test / Assembler / 2002-01-24-ValueRefineAbsType.ll
index ed12c096f7feaf56f11fbbab545827819f753ca7..6e49674a32fb162ca8ee39d34c3f49e6c12f5809 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-upgrade < %s | llvm-as -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
 ; >   if (OldTy == NewTy && !OldTy->isAbstract())
 ; >     Ty.removeUserFromConcrete();
 ;
-; This was causing an assertion failure, due to the "foo" Method object never 
+; 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)