blob: 58f9f82e15439316a41816a01b5384bffc42a41d [file] [log] [blame]
Duncan Sandsb32d19d2010-11-25 21:24:35 +00001// RUN: %llvmgcc -xc %s -S -o - | grep getelementptr
Chris Lattner3faf03a2003-11-09 00:23:05 +00002
3char *test(char* C) {
4 return C-1; // Should turn into a GEP
5}
6
7int *test2(int* I) {
8 return I-1;
9}