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
/
pr69471-1.c
blob
3eac3b5bdbcab51fd9b357a0bbfdf8df342df03e
1
/* { dg-do compile } */
2
/* { dg-options "-Wno-implicit-function-declaration -Wno-int-conversion -fno-builtin-free -fno-builtin-malloc" } */
3
4
void
*
5
foo
(
void
*
p
)
6
{
7
free
(
p
);
8
return
malloc
(
p
);
9
}