llvm-6502/test/C++Frontend/2003-11-08-ArrayAddress.cpp.tr
2003-11-20 19:51:11 +00:00

11 lines
186 B
Plaintext

// 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];
}