8625704ad8
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
11 lines
169 B
LLVM
11 lines
169 B
LLVM
; RUN: not llvm-as < %s > /dev/null 2>&1
|
|
|
|
declare void @foo(i8*)
|
|
|
|
define void @bar() {
|
|
invoke void @foo(i8* signext null)
|
|
to label %r unwind label %r
|
|
r:
|
|
ret void
|
|
}
|