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-dse-32.c
blob
eea0d8d5cf0d35c62a687748a8b6164f278a4b29
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-dse1-details" } */
3
4
void
f
(
int
n
)
5
{
6
char
*
p
=
__builtin_malloc
(
1
);
7
int
i
;
8
do
9
*
p
=
0
;
10
while
(++
i
<
n
);
11
}
12
13
/* { dg-final { scan-tree-dump-times "Deleted dead store" 1 "dse1" } } */