mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-09 13:41:35 +00:00
cfa5f917dc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273110 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
1016 B
LLVM
Executable File
32 lines
1016 B
LLVM
Executable File
; RUN: llc %s -O0 -march=sparc -mcpu=ut699 -o - | FileCheck %s
|
|
|
|
; CHECK-LABEL: test_fix_fsmuld_1
|
|
; CHECK: fstod %f20, %f2
|
|
; CHECK: fstod %f21, %f3
|
|
; CHECK: fmuld %f2, %f3, %f8
|
|
; CHECK: fstod %f20, %f0
|
|
define double @test_fix_fsmuld_1() {
|
|
entry:
|
|
%a = alloca float, align 4
|
|
%b = alloca float, align 4
|
|
store float 0x402ECCCCC0000000, float* %a, align 4
|
|
store float 0x4022333340000000, float* %b, align 4
|
|
%0 = load float, float* %b, align 4
|
|
%1 = load float, float* %a, align 4
|
|
%mul = tail call double asm sideeffect "fsmuld $0, $1, $2", "={f20},{f21},{f8}"(float* %a, float* %b)
|
|
|
|
ret double %mul
|
|
}
|
|
|
|
; CHECK-LABEL: test_fix_fsmuld_2
|
|
; CHECK: fstod %f20, %f2
|
|
; CHECK: fstod %f21, %f3
|
|
; CHECK: fmuld %f2, %f3, %f8
|
|
; CHECK: fstod %f20, %f0
|
|
define double @test_fix_fsmuld_2(float* %a, float* %b) {
|
|
entry:
|
|
%mul = tail call double asm sideeffect "fsmuld $0, $1, $2", "={f20},{f21},{f8}"(float* %a, float* %b)
|
|
|
|
ret double %mul
|
|
}
|