mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
605b3427a9
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187462 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
555 B
LLVM
24 lines
555 B
LLVM
; RUN: opt -instcombine -S < %s | FileCheck %s
|
|
|
|
; CHECK: test1
|
|
define double @test1(float %a, double %b) nounwind readnone ssp uwtable {
|
|
; CHECK-NOT: fsub
|
|
; CHECK: fpext
|
|
; CHECK: fadd
|
|
%1 = fsub float -0.000000e+00, %a
|
|
%2 = fpext float %1 to double
|
|
%3 = fsub double %b, %2
|
|
ret double %3
|
|
}
|
|
|
|
; CHECK: test2
|
|
define double @test2(float %a, double %b) nounwind readnone ssp uwtable {
|
|
; CHECK-NOT: fsub
|
|
; CHECK: fpext
|
|
; CHECK: fadd fast
|
|
%1 = fsub float -0.000000e+00, %a
|
|
%2 = fpext float %1 to double
|
|
%3 = fsub fast double %b, %2
|
|
ret double %3
|
|
}
|