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