blob: 443dfbdb37fc9ca556ce9425d883aa14d142391f [file] [log] [blame]
Chris Lattner07909a32003-11-09 00:23:05 +00001// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep getelementptr
2
3char *test(char* C) {
4 return C-1; // Should turn into a GEP
5}
6
7int *test2(int* I) {
8 return I-1;
9}