blob: c4a7317bdeb244a4fb333a011e248e416a741244 [file] [log] [blame]
Reid Spencerd0e30dc2006-12-02 04:23:10 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep trunc
Chris Lattnerdadf78d2004-04-07 18:38:01 +00002
3target endian = little
4target pointersize = 32
5
6int* %test(int* %X, long %Idx) {
7 ; Should insert a cast to int on this target
8 %R = getelementptr int* %X, long %Idx
9 ret int* %R
10}