diff options
Diffstat (limited to 'llvm/test/Transforms/InstCombine/tan.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/tan.ll | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/llvm/test/Transforms/InstCombine/tan.ll b/llvm/test/Transforms/InstCombine/tan.ll deleted file mode 100644 index 6ea116839fe..00000000000 --- a/llvm/test/Transforms/InstCombine/tan.ll +++ /dev/null @@ -1,23 +0,0 @@ -; RUN: opt < %s -instcombine -S | FileCheck %s - -define float @mytan(float %x) { - %call = call fast float @atanf(float %x) - %call1 = call fast float @tanf(float %call) - ret float %call1 -} - -; CHECK-LABEL: define float @mytan( -; CHECK: ret float %x - -define float @test2(float ()* %fptr) { - %call1 = call fast float %fptr() - %tan = call fast float @tanf(float %call1) - ret float %tan -} - -; CHECK-LABEL: @test2 -; CHECK: tanf - -declare float @tanf(float) -declare float @atanf(float) - |