blob: 355d4e8c10fdbc0b29a06aef358d270137b0cfe4 [file] [log] [blame]
Bill Wendlinga0126af2012-04-08 11:00:38 +00001; RUN: not llvm-as < %s |& FileCheck %s
2
3; CHECK: invalid indices for insertvalue
Frits van Bommela4805cf2010-12-05 20:50:26 +00004
5define void @test() {
6entry:
Bill Wendlinga0126af2012-04-08 11:00:38 +00007 insertvalue [0 x i32] undef, i32 0, 0
8 ret void
Frits van Bommela4805cf2010-12-05 20:50:26 +00009}