blob: 58f9f82e15439316a41816a01b5384bffc42a41d [file] [log] [blame]
// RUN: %llvmgcc -xc %s -S -o - | grep getelementptr
char *test(char* C) {
return C-1; // Should turn into a GEP
}
int *test2(int* I) {
return I-1;
}