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 ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
torture
/
pr61184.c
blob
83117b9cfb09404509aae1d1b2784454f77790b8
1
/* { dg-do run } */
2
/* { dg-additional-options "-fno-strict-overflow" } */
3
4
short
a
;
5
6
void
7
foo
(
void
)
8
{
9
for
(
a
=
0
;
a
>=
0
;
a
++)
10
;
11
}
12
13
int
14
main
()
15
{
16
foo
();
17
return
0
;
18
}