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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr68088_1.c
blob
49c6aa1454335be8748d899f9a83092a539ff17e
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
void
bar
(
unsigned long
);
5
6
void
7
foo
(
unsigned long
aul
,
unsigned
m
,
unsigned
i
)
8
{
9
while
(
1
)
10
{
11
aul
+=
i
;
12
i
=
aul
%
m
;
13
bar
(
aul
);
14
}
15
}