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
/
pr105218.c
blob
0070057c32db8c84387724350e7bcd6b7db35325
1
/* PR tree-optimization/105218 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -g" } */
4
5
int
a
,
c
;
6
void
bar
(
void
);
7
8
void
9
foo
(
void
)
10
{
11
int
b
=
131
;
12
if
(
a
)
13
b
=
c
==
2
?
1
:
c
;
14
while
(
b
)
15
bar
();
16
}