Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
039ba763d1da901bcd1ef0020a2aa97704c7962a
/
.
/
test
/
C++Frontend
/
2004-01-11-DynamicInitializedConstant.cpp.tr
blob: 03fead23f2f7a0e6ae52f83cf0494d645b35e49c [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -xc++ -S -o - %s | not grep ' constant '
extern
int
X
;
const
int
Y
=
X
;
const
int
*
foo
()
{
return
&
Y
;
}