mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 04:08:07 +00:00
1825e30dec
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18900 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
366 B
LLVM
20 lines
366 B
LLVM
; RUN: llvm-as < %s | opt -ipsccp | llvm-dis | grep -v 'ret int 0' | grep -v 'ret int undef' | not grep ret
|
|
|
|
implementation
|
|
|
|
internal int %bar(int %A) {
|
|
%C = seteq int %A, 0
|
|
br bool %C, label %T, label %F
|
|
T:
|
|
%B = call int %bar(int 0)
|
|
ret int 0
|
|
F: ; unreachable
|
|
%C = call int %bar(int 1)
|
|
ret int %C
|
|
}
|
|
|
|
int %foo() {
|
|
%X = call int %bar(int 0)
|
|
ret int %X
|
|
}
|