llvm-6502/test/FrontendC/2003-11-08-PointerSubNotGetelementptr.c

10 lines
169 B
C
Raw Normal View History

// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep getelementptr
char *test(char* C) {
return C-1; // Should turn into a GEP
}
int *test2(int* I) {
return I-1;
}