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
Add __builtion_unreachable to vector::size(), vector::capacity()
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr97501.c
blob
aedac83962dab7e8c0900e66e3509320c63942bb
1
// { dg-do compile }
2
// { dg-options "-O2" }
3
4
static int
c
=
0
;
5
6
int
main
() {
7
int
b
=
0
;
8
if
(
c
) {
9
for
(;;
b
--)
10
do
11
b
++;
12
while
(
b
);
13
}
14
}