repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
AVR: target/84211 - Add a post reload register optimization pass.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
20140610-1.c
blob
67cf8cd8de86c1800d2a4e89e5452c594bcbbf2d
1
/* { dg-do run } */
2
/* { dg-additional-sources "20140610-2.c" } */
3
4
extern
int
a
;
5
extern
int
*
p
;
6
7
void
test
(
void
);
8
9
int
main
()
10
{
11
*
p
=
0
;
12
a
=
1
;
13
test
();
14
return
0
;
15
}