blob: c30498279deac4ff61b99aee891c10c701726e79 [file] [log] [blame]
Chris Lattner4269e402004-07-20 05:20:39 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep cast
2target pointersize = 32
3
4int *%test(int *%P) {
5 %V = cast int* %P to int
6 %P2 = cast int %V to int*
7 ret int* %P2
8}