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
25 lines
564 B
LLVM
25 lines
564 B
LLVM
; RUN: true
|
|
; DISABLED: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s
|
|
|
|
@num = external global i32
|
|
@acc = external global i32
|
|
@num2 = external global i32
|
|
|
|
; CHECK: allocframe
|
|
; CHECK: dealloc_return
|
|
|
|
define i32 @foo() nounwind {
|
|
entry:
|
|
%i = alloca i32, align 4
|
|
%0 = load i32* @num, align 4
|
|
store i32 %0, i32* %i, align 4
|
|
%1 = load i32* %i, align 4
|
|
%2 = load i32* @acc, align 4
|
|
%mul = mul nsw i32 %1, %2
|
|
%3 = load i32* @num2, align 4
|
|
%add = add nsw i32 %mul, %3
|
|
store i32 %add, i32* %i, align 4
|
|
%4 = load i32* %i, align 4
|
|
ret i32 %4
|
|
}
|