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