Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / Transforms / InstCombine / cast_ptr.ll
1 ; Tests to make sure elimination of casts is working correctly
2 ; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output &&
3 ; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | not grep '\([sz]ext\)\|\(trunc\)'
4
5 target pointersize = 32
6
7 implementation
8
9 sbyte* %test1(sbyte* %t) {
10         %tmpc = cast sbyte* %t to uint
11         %tmpa = add uint %tmpc, 32
12         %tv = cast uint %tmpa to sbyte*
13         ret sbyte* %tv
14 }
15