1// RUN: %clang_cc1  %s -emit-llvm -o - | grep getelementptr
2
3int *test(int *X, int Y) {
4  return X + Y;
5}
6