mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
Currently we have a number of tests that fail with -verify-machineinstrs. To detect this cases earlier we add the option to the testcases with the exception of tests that will currently fail with this option. PR 27456 keeps track of this failures. No code review, as discussed with Hal Finkel. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277624 91177308-0d34-0410-b5e6-96231b3b80d8
53 lines
1.2 KiB
LLVM
53 lines
1.2 KiB
LLVM
; RUN: llc -verify-machineinstrs -mtriple=powerpc-unknown-linux-gnu -O0 < %s | FileCheck %s
|
|
|
|
; Testing operations in soft-float mode
|
|
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" }
|