diff options
Diffstat (limited to 'test/Verifier/2006-07-11-StoreStruct.ll')
-rw-r--r-- | test/Verifier/2006-07-11-StoreStruct.ll | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Verifier/2006-07-11-StoreStruct.ll b/test/Verifier/2006-07-11-StoreStruct.ll index 655e4b748e..80ab122d0b 100644 --- a/test/Verifier/2006-07-11-StoreStruct.ll +++ b/test/Verifier/2006-07-11-StoreStruct.ll @@ -1,5 +1,7 @@ -; RUN: not llvm-as < %s |& grep {Instruction operands must be first-class} -; PR826 +; RUN: llvm-as < %s |& not grep {Instruction operands must be first-class} + +; This previously was for PR826, but structs are now first-class so +; the following is now valid. %struct_4 = type { i32 } |