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
/
tree-ssa
/
ssa-dce-8.c
blob
97d3dcf5520c01eb715bdf166a348cc94417dba3
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-optimized" } */
3
4
int
main
()
5
{
6
int
*
p
=
__builtin_malloc
(
4
);
7
*
p
=
4
;
8
return
0
;
9
}
10
11
/* { dg-final { scan-tree-dump-not "malloc" "optimized" } } */