summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/pow-2.ll
blob: d1ffde703faa75074459a0cf090b898efc3309fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; Test that the pow library call simplifier works correctly.
;
; RUN: opt < %s -instcombine -S | FileCheck %s

declare float @pow(double, double)

; Check that pow functions with the wrong prototype aren't simplified.

define float @test_no_simplify1(double %x) {
; CHECK-LABEL: @test_no_simplify1(
  %retval = call float @pow(double 1.0, double %x)
; CHECK-NEXT: call float @pow(double 1.000000e+00, double %x)
  ret float %retval
}