blob: 4d5f08142e37bc260b46c76e7f44bfea0ebd22ee (
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-as < %s | 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
}
|