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
Merge reload-branch up to revision 101000
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20031011-2.c
blob
02684550959c81055d34bc74bd2c9af926ab597b
1
/* PR optimization/12260. */
2
3
extern
int
f
(
void
);
4
extern
int
g
(
int
);
5
6
static char
buf
[
512
];
7
void
h
(
int
l
) {
8
while
(
l
) {
9
char
*
op
=
buf
;
10
if
(
f
() ==
0
)
11
break
;
12
if
(
g
(
op
-
buf
+
1
))
13
break
;
14
}
15
}