9ad1b8f82f721ab6f10bc4b142cc9284bf8e0207
[oota-llvm.git] / 2003-11-08-ArrayAddress.cpp
1 // RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep getelementptr
2
3 struct foo {
4   int array[100];
5   void *getAddr(unsigned i);
6 };
7
8 void *foo::getAddr(unsigned i) {
9   return &array[i];
10 }