summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/cos-2.ll
diff options
context:
space:
mode:
authorMeador Inge <meadori@codesourcery.com>2012-11-13 04:16:17 +0000
committerMeador Inge <meadori@codesourcery.com>2012-11-13 04:16:17 +0000
commit2920a71663b96f2c33b1fee09ca5ca9f5dc1cf12 (patch)
treede057ca88e82ce75a40dc65a04b4d4db0db0a2ec /test/Transforms/InstCombine/cos-2.ll
parent4712b804dfe02bc7bbf948f9a5e352b3f14cc89a (diff)
downloadllvm-2920a71663b96f2c33b1fee09ca5ca9f5dc1cf12.tar.gz
llvm-2920a71663b96f2c33b1fee09ca5ca9f5dc1cf12.tar.bz2
llvm-2920a71663b96f2c33b1fee09ca5ca9f5dc1cf12.tar.xz
instcombine: Migrate math library call simplifications
This patch migrates the math library call simplifications from the simplify-libcalls pass into the instcombine library call simplifier. I have typically migrated just one simplifier at a time, but the math simplifiers are interdependent because: 1. CosOpt, PowOpt, and Exp2Opt all depend on UnaryDoubleFPOpt. 2. CosOpt, PowOpt, Exp2Opt, and UnaryDoubleFPOpt all depend on the option -enable-double-float-shrink. These two factors made migrating each of these simplifiers individually more of a pain than it would be worth. So, I migrated them all together. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/cos-2.ll')
-rw-r--r--test/Transforms/InstCombine/cos-2.ll17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/cos-2.ll b/test/Transforms/InstCombine/cos-2.ll
new file mode 100644
index 0000000000..2f2dfafe48
--- /dev/null
+++ b/test/Transforms/InstCombine/cos-2.ll
@@ -0,0 +1,17 @@
+; Test that the cos library call simplifier works correctly.
+;
+; RUN: opt < %s -instcombine -S | FileCheck %s
+
+target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
+
+declare float @cos(double)
+
+; Check that cos functions with the wrong prototype aren't simplified.
+
+define float @test_no_simplify1(double %d) {
+; CHECK: @test_no_simplify1
+ %neg = fsub double -0.000000e+00, %d
+ %cos = call float @cos(double %neg)
+; CHECK: call float @cos(double %neg)
+ ret float %cos
+}