summaryrefslogtreecommitdiff
path: root/test/Transforms/LevelRaise/2002-11-13-PointerFunction.ll
blob: 2d5181150199d0239562b30c85f96ebe4e5cc3e9 (plain)
1
2
3
4
5
6
7
8
9
10
; 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
}