mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-22 07:32:48 +00:00
13 lines
173 B
LLVM
13 lines
173 B
LLVM
|
; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | not grep nounwind
|
||
|
|
||
|
define weak void @f() {
|
||
|
entry:
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
define void @g() {
|
||
|
entry:
|
||
|
call void @f()
|
||
|
ret void
|
||
|
}
|