Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
d3d086d6794e901bde43b1c1a374a4b1d571d7e7
/
.
/
llvm
/
test
/
Regression
/
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
;
}