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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20000728-1.c
blob
f56d940834eb200e6eaa60b87ef410a19bb1d580
1
struct
clock
{
2
long
sec
;
long
usec
;
3
};
4
5
int
foo
(
void
)
6
{
7
struct
clock clock_old
= {
0
,
0
};
8
9
for
(;;) {
10
long
foo
;
11
12
if
(
foo
==
clock_old
.
sec
&&
0
==
clock_old
.
usec
);
13
}
14
return
0
;
15
}
16