llvm-6502/test/Transforms/LevelRaise/2002-11-13-PointerFunction.ll
2006-12-02 04:23:10 +00:00

11 lines
289 B
LLVM

; This testcase should be able to eliminate at least one of the casts.
;
; RUN: llvm-upgrade < %s | llvm-as | opt -raise | llvm-dis | not grep 'REMOVE'
int %foo(sbyte * %PF) {
%UPF = cast sbyte* %PF to uint()*
%Ret = call uint %UPF()
%REMOVE = cast uint %Ret to int
ret int %REMOVE
}