blob: 5a8fa65dbc32be6c00d2dd8a88d0dbd0364eb9c4 [file] [log] [blame]
Duncan Sandsd9d70392007-12-21 19:19:01 +00001; RUN: not llvm-as < %s
2
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}