mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
04c82d35b9
There is an assert at line 558 in ScheduleDAGInstrs::buildSchedGraph(AliasAnalysis *AA). This assert needs to addressed for post RA scheduler. Until that assert is addressed, any passes that uses post ra scheduler will fail. So, I am temporarily disabling the hexagon tests until that fix is in. The assert is as follows: assert(!MI->isTerminator() && !MI->isLabel() && "Cannot schedule terminators or labels!"); llvm-svn: 154617
24 lines
733 B
LLVM
24 lines
733 B
LLVM
; RUN: true
|
|
; DISABLED: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
|
|
; CHECK: __hexagon_addsf3
|
|
; CHECK: __hexagon_subsf3
|
|
|
|
define void @foo(float* %acc, float %num, float %num2) nounwind {
|
|
entry:
|
|
%acc.addr = alloca float*, align 4
|
|
%num.addr = alloca float, align 4
|
|
%num2.addr = alloca float, align 4
|
|
store float* %acc, float** %acc.addr, align 4
|
|
store float %num, float* %num.addr, align 4
|
|
store float %num2, float* %num2.addr, align 4
|
|
%0 = load float** %acc.addr, align 4
|
|
%1 = load float* %0
|
|
%2 = load float* %num.addr, align 4
|
|
%add = fadd float %1, %2
|
|
%3 = load float* %num2.addr, align 4
|
|
%sub = fsub float %add, %3
|
|
%4 = load float** %acc.addr, align 4
|
|
store float %sub, float* %4
|
|
ret void
|
|
}
|