mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
5944ba6336
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6959 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
264 B
LLVM
11 lines
264 B
LLVM
; This testcase should be able to eliminate at least one of the casts.
|
|
;
|
|
; RUN: as < %s | opt -raise | 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
|
|
}
|