llvm-6502/test/Transforms/LICM/call_sink_const_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

17 lines
351 B
LLVM

; RUN: llvm-as < %s | opt -basicaa -licm | llvm-dis | %prcontext sin 1 | grep Out:
declare double %sin(double)
declare void %foo()
double %test(double %X) {
br label %Loop
Loop:
call void %foo() ;; Unknown effects!
%A = call double %sin(double %X) ;; Can still hoist/sink call
br bool true, label %Loop, label %Out
Out:
ret double %A
}