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
Corrected date in changelog
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr12603.c
blob
f7caef28416c5a2c7271ca12f0fca069f4e1c85c
1
/* PR 12603: No return statement warning on function that never returns with -O3. */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 -Wall -Wextra -Wreturn-type" } */
4
int
5
this_function_never_returns
()
6
{
7
for
(;;);
8
}