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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20030418-1.c
blob
f6d5a4af51c86451ec2632354bf7fa8bdd400d56
1
/* PR optimization/7675 */
2
/* Contributed by Volker Reichelt */
3
4
/* Verify that we don't put automatic variables
5
in registers too early. */
6
7
extern
int
dummy
(
int
*);
8
9
void
foo
(
int
i
)
10
{
11
int
j
=
i
;
12
13
void
bar
() {
int
x
=
j
,
y
=
i
; }
14
15
dummy
(&
i
);
16
}