mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
14 lines
268 B
LLVM
14 lines
268 B
LLVM
|
; RUN: opt < %s -basiccg
|
||
|
; PR13903
|
||
|
|
||
|
define void @main() {
|
||
|
invoke void @llvm.donothing()
|
||
|
to label %ret unwind label %unw
|
||
|
unw:
|
||
|
%tmp = landingpad i8 personality i8 0 cleanup
|
||
|
br label %ret
|
||
|
ret:
|
||
|
ret void
|
||
|
}
|
||
|
declare void @llvm.donothing() nounwind readnone
|