Files
clang-p2996/llvm/test/CodeGen/PowerPC/ppcsoftops.ll
Ehsan Amiri a538b0f023 Adding -verify-machineinstrs option to PowerPC tests
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.

llvm-svn: 277624
2016-08-03 18:17:35 +00:00

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" }