blob: 9ad1b8f82f721ab6f10bc4b142cc9284bf8e0207 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep getelementptr
2
3struct foo {
4 int array[100];
5 void *getAddr(unsigned i);
6};
7
8void *foo::getAddr(unsigned i) {
9 return &array[i];
10}