blob: 9a9c642f11a5063633c1d49d137506f8968a2621 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3char *test(char* C) {
4 // CHECK: getelementptr
5 return C-1; // Should turn into a GEP
6}
7
8int *test2(int* I) {
9 return I-1;
10}