mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +00:00
11 lines
152 B
LLVM
11 lines
152 B
LLVM
|
; RUN: not llvm-as < %s
|
||
|
|
||
|
declare void @foo(i8*)
|
||
|
|
||
|
define void @bar() {
|
||
|
invoke void @foo(i8* signext null)
|
||
|
to label %r unwind label %r
|
||
|
r:
|
||
|
ret void
|
||
|
}
|