1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/call-cast-target.ll
Andrew Lenharth a9851de72e can we cast between pointers and IntPtrType
llvm-svn: 27879
2006-04-20 14:54:17 +00:00

16 lines
334 B
LLVM

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep call | not grep cast
target endian = little
target pointersize = 32
target triple = "i686-pc-linux-gnu"
implementation ; Functions:
int %main() {
entry:
%tmp = call int cast (sbyte* (int*)* %ctime to int (int*)*)( int* null )
ret int %tmp
}
declare sbyte* %ctime(int*)