summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstCombine/tan.ll
blob: 58e3bb355bd273f5cade187281de2c45ea6cf22c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: opt < %s -instcombine -S | FileCheck %s

define float @mytan(float %x) #0 {
entry:
  %call = call float @atanf(float %x)
  %call1 = call float @tanf(float %call)
  ret float %call1
}

; CHECK-LABEL: define float @mytan(
; CHECK:   ret float %x

declare float @tanf(float) #0
declare float @atanf(float) #0
attributes #0 = { "unsafe-fp-math"="true" }
OpenPOWER on IntegriCloud