mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 18:31:23 +00:00
2f69e4cf32
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!"); git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154617 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|