aboutsummaryrefslogtreecommitdiffstats
path: root/test/Verifier/2006-07-11-StoreStruct.ll
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2008-03-16 07:55:46 +0000
committerNick Lewycky <nicholas@mxc.ca>2008-03-16 07:55:46 +0000
commit3f63785cc6a89e251855a8dad4fa7b1f2ea189cd (patch)
tree281460d4620184811b7c2d0f62036ff6059d62ad /test/Verifier/2006-07-11-StoreStruct.ll
parent917a5d94253cead6e6e6279d92b1191ebd90d602 (diff)
downloadexternal_llvm-3f63785cc6a89e251855a8dad4fa7b1f2ea189cd.zip
external_llvm-3f63785cc6a89e251855a8dad4fa7b1f2ea189cd.tar.gz
external_llvm-3f63785cc6a89e251855a8dad4fa7b1f2ea189cd.tar.bz2
All of these tests had out of date syntax and were never even running through
llvm-upgrade because nobody noticed them failing. Update to use new syntax and actually check for the right failure by looking at the error message. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48417 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Verifier/2006-07-11-StoreStruct.ll')
-rw-r--r--test/Verifier/2006-07-11-StoreStruct.ll8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/Verifier/2006-07-11-StoreStruct.ll b/test/Verifier/2006-07-11-StoreStruct.ll
index 31e2dd4..655e4b7 100644
--- a/test/Verifier/2006-07-11-StoreStruct.ll
+++ b/test/Verifier/2006-07-11-StoreStruct.ll
@@ -1,11 +1,9 @@
-; RUN: not llvm-as %s -o /dev/null -f
+; RUN: not llvm-as < %s |& grep {Instruction operands must be first-class}
; PR826
- %struct_4 = type { int }
+ %struct_4 = type { i32 }
-implementation ; Functions:
-
-void %test() {
+define void @test() {
store %struct_4 zeroinitializer, %struct_4* null
unreachable
}