repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initialize HasMetadata to zero.
[llvm/avr.git]
/
test
/
FrontendC++
/
2004-01-11-DynamicInitializedConstant.cpp
blob
8ae15c9592b1f36fc5a4e9924c843d63657aea02
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