mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
4572ce85b0
llvm-svn: 33296
11 lines
186 B
Plaintext
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];
|
|
}
|