Change makeLibCall to take an ArrayRef<SDValue> instead of pointer and size. This...
[oota-llvm.git] / test / Verifier / 2006-07-11-StoreStruct.ll
index 31e2dd44069ee25cc3a50c448fc59d660ef88058..70aea8779bf1d89714a3c49fe46e47b63326c06d 100644 (file)
@@ -1,11 +1,13 @@
-; RUN: not llvm-as %s -o /dev/null -f
-; PR826
+; RUN: llvm-as < %s 2>&1 | FileCheck %s 
 
-        %struct_4 = type { int }
+; CHECK-NOT: Instruction operands must be first-class
 
-implementation   ; Functions:
+; This previously was for PR826, but structs are now first-class so
+; the following is now valid.
 
-void %test() {
+        %struct_4 = type { i32 }
+
+define void @test() {
         store %struct_4 zeroinitializer, %struct_4* null
         unreachable
 }