mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-06 04:19:10 +00:00
db0b22110a
This is the second in a set of patches for soft float support for ppc32, it enables soft float operations. Patch by Strahinja Petrovic. Differential Revision: http://reviews.llvm.org/D13700 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255516 91177308-0d34-0410-b5e6-96231b3b80d8
51 lines
1.1 KiB
LLVM
51 lines
1.1 KiB
LLVM
; RUN: llc -mtriple=powerpc-unknown-linux-gnu -O0 < %s | FileCheck %s
|
|
define double @foo() #0 {
|
|
entry:
|
|
%a = alloca double, align 8
|
|
%b = alloca double, align 8
|
|
%0 = load double, double* %a, align 8
|
|
%1 = load double, double* %b, align 8
|
|
%add = fadd double %0, %1
|
|
ret double %add
|
|
|
|
; CHECK-LABEL: __adddf3
|
|
}
|
|
|
|
define double @foo1() #0 {
|
|
entry:
|
|
%a = alloca double, align 8
|
|
%b = alloca double, align 8
|
|
%0 = load double, double* %a, align 8
|
|
%1 = load double, double* %b, align 8
|
|
%mul = fmul double %0, %1
|
|
ret double %mul
|
|
|
|
; CHECK-LABEL: __muldf3
|
|
}
|
|
|
|
define double @foo2() #0 {
|
|
entry:
|
|
%a = alloca double, align 8
|
|
%b = alloca double, align 8
|
|
%0 = load double, double* %a, align 8
|
|
%1 = load double, double* %b, align 8
|
|
%sub = fsub double %0, %1
|
|
ret double %sub
|
|
|
|
; CHECK-LABEL: __subdf3
|
|
}
|
|
|
|
define double @foo3() #0 {
|
|
entry:
|
|
%a = alloca double, align 8
|
|
%b = alloca double, align 8
|
|
%0 = load double, double* %a, align 8
|
|
%1 = load double, double* %b, align 8
|
|
%div = fdiv double %0, %1
|
|
ret double %div
|
|
|
|
; CHECK-LABEL: __divdf3
|
|
}
|
|
|
|
attributes #0 = {"use-soft-float"="true" }
|