llvm-6502/test/Transforms/LevelRaise/2002-05-02-MissedRaise.ll
2006-12-02 04:23:10 +00:00

21 lines
535 B
LLVM

; This testcase is not level raised properly...
; XFAIL: *
; RUN: llvm-upgrade < %s | llvm-as | opt -raise | llvm-dis | not grep bitcast
%List = type { int, %List* }
implementation
%List* "createList"(uint %Depth)
begin
%reg110 = malloc uint, uint 4
store uint %Depth, uint* %reg110
%reg113 = call %List* %createList( uint %Depth )
%reg217 = getelementptr uint* %reg110, long 2
%cast221 = cast uint* %reg217 to %List**
store %List* %reg113, %List** %cast221
%cast222 = cast uint* %reg110 to %List*
ret %List* %cast222
end