blob: c62bc0f4e190f00b41494521c67688211c3969cf [file] [log] [blame]
Kamil Rytarowski103b8232017-07-12 13:24:46 +00001; RUN: not llvm-as < %s > /dev/null 2>&1
Duncan Sandsd9d70392007-12-21 19:19:01 +00002
3declare void @foo(i8*)
4
5define void @bar() {
6 invoke void @foo(i8* signext null)
7 to label %r unwind label %r
8r:
9 ret void
10}