X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FVerifier%2F2006-07-11-StoreStruct.ll;h=80ab122d0b7dbaa7c04ff0e91067e8175ab48ed3;hb=3a96122c4ae4e7727ba976a9f658626c18997689;hp=31e2dd44069ee25cc3a50c448fc59d660ef88058;hpb=f7cb6749c9cf17f2127ecab028b1184a987aa42f;p=oota-llvm.git diff --git a/test/Verifier/2006-07-11-StoreStruct.ll b/test/Verifier/2006-07-11-StoreStruct.ll index 31e2dd44069..80ab122d0b7 100644 --- a/test/Verifier/2006-07-11-StoreStruct.ll +++ b/test/Verifier/2006-07-11-StoreStruct.ll @@ -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 }