Thumb2 BFC was insufficiently encoded.
[oota-llvm.git] / test / Verifier / 2006-07-11-StoreStruct.ll
index 31e2dd44069ee25cc3a50c448fc59d660ef88058..80ab122d0b7dbaa7c04ff0e91067e8175ab48ed3 100644 (file)
@@ -1,11 +1,11 @@
-; RUN: not llvm-as %s -o /dev/null -f
-; PR826
+; RUN: llvm-as < %s |& not grep {Instruction operands must be first-class}
 
-        %struct_4 = type { int }
+; This previously was for PR826, but structs are now first-class so
+; the following is now valid.
 
-implementation   ; Functions:
+        %struct_4 = type { i32 }
 
-void %test() {
+define void @test() {
         store %struct_4 zeroinitializer, %struct_4* null
         unreachable
 }