mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
ae3738f4a7
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
25 lines
591 B
LLVM
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
|
|
}
|