Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
afa08b51a65fd3e945cb752281f7ad5f02c4fa29
/
.
/
test
/
FrontendC++
/
2004-01-11-DynamicInitializedConstant.cpp
blob: 8ae15c9592b1f36fc5a4e9924c843d63657aea02 [
file
] [
log
] [
blame
]
Dan Gohman
f17a25c
2007-07-18 16:29:46 +0000
[
diff
] [
blame
]
1
// RUN: %llvmgcc -xc++ -S -o - %s | not grep { constant }
2
3
extern
int
X
;
4
const
int
Y
=
X
;
5
const
int
*
foo
()
{
return
&
Y
;
}
6