mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
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)
|
|
|