mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
15 lines
297 B
LLVM
15 lines
297 B
LLVM
|
; RUN: llvm-as < %s | opt -basicaa -licm | llvm-dis | grep -C1 strlen | grep Out:
|
||
|
declare int %strlen(sbyte*)
|
||
|
declare void %foo()
|
||
|
|
||
|
int %test(sbyte* %P) {
|
||
|
br label %Loop
|
||
|
|
||
|
Loop:
|
||
|
%A = call int %strlen(sbyte* %P) ;; Can hoist/sink call
|
||
|
br bool false, label %Loop, label %Out
|
||
|
|
||
|
Out:
|
||
|
ret int %A
|
||
|
}
|