mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
12 lines
289 B
LLVM
12 lines
289 B
LLVM
|
; RUN: opt < %s -reassociate -instcombine -S | FileCheck %s
|
||
|
|
||
|
define float @test1(float %A, float %B) {
|
||
|
; CHECK-LABEL: test1
|
||
|
; CHECK: %Z = fadd fast float %A, %B
|
||
|
; CHECK: ret float %Z
|
||
|
%W = fadd fast float %B, -5.0
|
||
|
%Y = fadd fast float %A, 5.0
|
||
|
%Z = fadd fast float %W, %Y
|
||
|
ret float %Z
|
||
|
}
|