Sign in
llvm
/
llvm-project
/
llvm
/
ff825b3fa08593f4538f6eeee9dc840ecc6250ba
/
.
/
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
;
}