Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
e77494e3e3da59afaa51d1bbcf732fa2851d865d
/
.
/
test
/
FrontendC++
/
2009-02-07-VolatileArrayRefHack.cpp
blob: b8589b067d29a2e9aa06b6055fdbd2f5c596e97a [
file
] [
log
] [
blame
]
// RUN: %llvmgxx -S %s -o - | grep {volatile load}
// PR3320
void
test
(
volatile
int
*
a
)
{
// should be a volatile load.
a
[
0
];
}