mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-15 20:06:46 +00:00
2aabd0722d
Upgrade to use new Tcl exec based test harness. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36062 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
678 B
LLVM
21 lines
678 B
LLVM
; The loop sinker was running from the bottom of the loop to the top, causing
|
|
; it to miss opportunities to sink instructions that depended on sinking other
|
|
; instructions from the loop. Instead they got hoisted, which is better than
|
|
; leaving them in the loop, but increases register pressure pointlessly.
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -licm | llvm-dis | \
|
|
; RUN: %prcontext getelementptr 1 | grep Out:
|
|
|
|
%Ty = type { int, int }
|
|
%X = external global %Ty
|
|
|
|
int %test() {
|
|
br label %Loop
|
|
Loop:
|
|
%dead = getelementptr %Ty* %X, long 0, uint 0
|
|
%sunk2 = load int* %dead
|
|
br bool false, label %Loop, label %Out
|
|
Out:
|
|
ret int %sunk2
|
|
}
|