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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr102009.c
blob
5b3a39bd0db9705efc27f705a4a8ddd5abd5fc7b
1
/* PR tree-optimization/102009 */
2
/* { dg-do compile } */
3
4
void
*
realloc
();
/* { dg-message "declared here" } */
5
6
void
*
7
foo
(
void
*
p
)
8
{
9
return
realloc
(
p
);
/* { dg-warning "too few arguments to built-in function 'realloc' expecting " } */
10
}