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
/
c-c++-common
/
analyzer
/
data-model-12.c
blob
e4a7fbdae442f3e2b97f5346ae5b813eee634e23
1
/* Mismatching decl of foo. */
2
/* { dg-additional-options "-std=gnu17" { target c } } */
3
4
int
foo
();
5
6
int
bar
(
void
)
7
{
8
return
foo
() +
1
;
9
}
10
11
int
foo
(
int
x
,
int
y
)
12
{
13
return
x
*
y
;
14
}