1// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s2 3char *test(char* C) {4 // CHECK: getelementptr5 return C-1; // Should turn into a GEP6}7 8int *test2(int* I) {9 return I-1;10}11