llvm-6502/test/Transforms/LICM/call_sink_pure_function.ll
John Criswell cc455dea0f Use the new prcontext script.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15427 91177308-0d34-0410-b5e6-96231b3b80d8
2004-08-02 22:31:58 +00:00

15 lines
301 B
LLVM

; RUN: llvm-as < %s | opt -basicaa -licm | llvm-dis | %prcontext strlen 1 | 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
}