Sign in
android
/
platform
/
external
/
llvm
/
e264f62ca09a8f65c87a46d562a4d0f9ec5d457e
/
.
/
test
/
FrontendC++
/
2003-11-08-ArrayAddress.cpp
blob: 9ad1b8f82f721ab6f10bc4b142cc9284bf8e0207 [
file
] [
log
] [
blame
]
// 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
];
}