1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-01 16:31:13 +00:00
2009-09-11 18:17:12 +00:00

16 lines
242 B
LLVM

; RUN: opt < %s -partial-inliner -disable-output
define i32 @f() {
entry:
br label %return
return: ; preds = %entry
ret i32 undef
}
define i32 @g() {
entry:
%0 = call i32 @f()
ret i32 %0
}