blob: 9ad1b8f82f721ab6f10bc4b142cc9284bf8e0207 [file] [log] [blame]
// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep getelementptr
struct foo {
int array[100];
void *getAddr(unsigned i);
};
void *foo::getAddr(unsigned i) {
return &array[i];
}