1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/Transforms/Reassociate/fast-AgressiveSubMove.ll
Chad Rosier fc00bbc305 [Reassociate] Canonicalize constants to RHS operand.
Fix a thinko where the RHS was already a constant.

llvm-svn: 222139
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
}