blob: 443dfbdb37fc9ca556ce9425d883aa14d142391f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +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}