mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-21 03:32:21 +00:00
11 lines
186 B
Plaintext
11 lines
186 B
Plaintext
|
// RUN: %llvmg++ -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];
|
||
|
}
|