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
/
pr97467.c
blob
dcbd218f733e38ba5bf31c0c4125951e168c5562
1
/* { dg-do compile } */
2
/* { dg-options "-Os" } */
3
4
int
a
;
5
long
b
;
6
unsigned int
c
=
1
;
7
8
int
main
() {
9
int
e
;
10
for
(;
c
<=
0
;
c
++) {
11
int
f
=
0
;
12
b
=
e
;
13
a
=
f
||
b
<<
c
;
14
}
15
return
0
;
16
}