Owen Anderson 0c326f07ca When InstCombine tries to fold away (fsub x, (fneg y)) into (fadd x, y), it is
also worthwhile for it to look through FP extensions and truncations, whose
application commutes with fneg.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187249 91177308-0d34-0410-b5e6-96231b3b80d8
2013-07-26 21:40:29 +00:00

13 lines
296 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
}