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
/
20020715-1.c
blob
5294133f37b088cdc8fb8ba3d51784ffc0a77d2d
1
/* PR optimization/7153 */
2
/* Verify that GCC doesn't promote a register when its
3
lifetime is not limited to one basic block. */
4
5
void
f
(
char
);
6
void
g
(
void
);
7
8
void
scale
(
void
)
9
{
10
int
width
;
11
char
bytes
;
12
char
*
src
;
13
14
if
(
width
)
15
{
16
bytes
= *
src
;
17
g
();
18
width
*=
bytes
;
19
}
20
21
f
(
bytes
);
22
}