mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
9ce94d7df4
intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210685 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
438 B
LLVM
20 lines
438 B
LLVM
; RUN: opt -reassociate -S < %s | FileCheck %s
|
|
|
|
declare void @use(float)
|
|
|
|
define void @test1(float %x, float %y) {
|
|
; CHECK-LABEL: test1
|
|
; CHECK: fmul float %x, %y
|
|
; CHECK: fmul float %x, %y
|
|
; CHECK: fsub float %1, %2
|
|
; CHECK: call void @use(float %{{.*}})
|
|
; CHECK: call void @use(float %{{.*}})
|
|
|
|
%1 = fmul float %x, %y
|
|
%2 = fmul float %y, %x
|
|
%3 = fsub float %1, %2
|
|
call void @use(float %1)
|
|
call void @use(float %3)
|
|
ret void
|
|
}
|