diff options
Diffstat (limited to 'llvm/test/Transforms/LICM/call_sink_const_function.ll')
-rw-r--r-- | llvm/test/Transforms/LICM/call_sink_const_function.ll | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/llvm/test/Transforms/LICM/call_sink_const_function.ll b/llvm/test/Transforms/LICM/call_sink_const_function.ll deleted file mode 100644 index f187e27335b..00000000000 --- a/llvm/test/Transforms/LICM/call_sink_const_function.ll +++ /dev/null @@ -1,17 +0,0 @@ -; RUN: llvm-as < %s | opt -basicaa -licm | llvm-dis | %prcontext sin 1 | grep Out: - -declare double @sin(double) readnone - -declare void @foo() - -define double @test(double %X) { - br label %Loop - -Loop: ; preds = %Loop, %0 - call void @foo( ) - %A = call double @sin( double %X ) readnone ; <double> [#uses=1] - br i1 true, label %Loop, label %Out - -Out: ; preds = %Loop - ret double %A -} |