1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/C++Frontend/2003-11-08-ArrayAddress.cpp.tr
2007-01-17 07:59:14 +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];
}