mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 14:10:41 +00:00
78a42b0707
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256964 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
484 B
LLVM
24 lines
484 B
LLVM
; 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)
|
|
|