Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

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)