summaryrefslogtreecommitdiff
path: root/test/FrontendC/2003-11-08-PointerSubNotGetelementptr.c
blob: 443dfbdb37fc9ca556ce9425d883aa14d142391f (plain)
1
2
3
4
5
6
7
8
9
// 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;
}