1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/Transforms/LICM/sink_multiple.ll
John Criswell 49caf50ce0 Use the new prcontext script.
llvm-svn: 15427
2004-08-02 22:31:58 +00:00

20 lines
652 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-as < %s | opt -licm | llvm-dis | %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, ubyte 0
%sunk2 = load int* %dead
br bool false, label %Loop, label %Out
Out:
ret int %sunk2
}