blob: 9ad1b8f82f721ab6f10bc4b142cc9284bf8e0207 [file] [log] [blame]
Brian Gaekea3382bd2003-11-20 19:51:11 +00001// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep getelementptr
Chris Lattner102f1b62003-11-08 23:00:49 +00002
3struct foo {
4 int array[100];
5 void *getAddr(unsigned i);
6};
7
8void *foo::getAddr(unsigned i) {
9 return &array[i];
10}