repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wno-div-by-zero.C
blob
937628ee924ccdb9c8086c2a1f33db07ebe821f6
1
// { dg-options "-Wno-div-by-zero" }
2
3
int breakme()
4
{
5
int x = 0;
6
x /= 0;
7
return x;
8
}