llvm-6502/test/Transforms/Reassociate/fast-AgressiveSubMove.ll
Chad Rosier ae3738f4a7 [Reassociate] Canonicalize constants to RHS operand.
Fix a thinko where the RHS was already a constant.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222139 91177308-0d34-0410-b5e6-96231b3b80d8
2014-11-17 15:52:51 +00:00

25 lines
591 B
LLVM

; RUN: opt < %s -reassociate -S | FileCheck %s
define float @test1(float %A) {
; CHECK-LABEL: test1
; CHECK-NEXT: %X = fadd float %A, 1.000000e+00
; CHECK-NEXT: %Y = fadd float %A, 1.000000e+00
; CHECK-NEXT: %r = fsub float %X, %Y
; CHECK-NEXT: ret float %r
%X = fadd float %A, 1.000000e+00
%Y = fadd float %A, 1.000000e+00
%r = fsub float %X, %Y
ret float %r
}
define float @test2(float %A) {
; CHECK-LABEL: test2
; CHECK-NEXT: ret float 0.000000e+00
%X = fadd fast float 1.000000e+00, %A
%Y = fadd fast float 1.000000e+00, %A
%r = fsub fast float %X, %Y
ret float %r
}