aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/tan.ll
blob: 6ea116839fe91f9aa64b7b868f936ae980638e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
; 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)