Sign in
ara-mdk
/
platform
/
external
/
llvm
/
ef476fdce2d194b5b335c15cd8a545ceeeb633b1
/
.
/
test
/
C++Frontend
/
2003-11-08-ArrayAddress.cpp.tr
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
];
}