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
/
pr86271.c
blob
f020c1b1e2fc2bdab790e43165e543c2f77ccb61
1
/* { dg-do compile } */
2
/* { dg-options "-fpermissive -O2" } */
3
4
int
main
()
5
{
6
int
i
;
7
foobar
(
i
, &
i
);
/* { dg-warning "implicit declaration" } */
8
}
9
10
int
foobar
(
int
a
,
long long
b
)
11
{
12
int
c
;
13
14
c
=
a
%
b
;
15
a
=
a
/
b
;
16
return
a
+
b
;
17
}