1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/FrontendC++/2003-11-08-ArrayAddress.cpp

11 lines
186 B
C++
Raw Normal View History

// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep getelementptr
2003-11-09 00:00:49 +01:00
struct foo {
int array[100];
void *getAddr(unsigned i);
};
void *foo::getAddr(unsigned i) {
return &array[i];
}