1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/Transforms/LevelRaise/2002-11-13-PointerFunction.ll

11 lines
274 B
LLVM
Raw Normal View History

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