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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ssa-dse-12.c
blob
03477a5122a0edef54a770f73ca6a8820eba5d8f
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-dse1" } */
3
4
void
foo
(
int
*
p
,
int
b
)
5
{
6
if
(
b
)
7
*
p
=
1
;
8
*
p
=
0
;
9
}
10
11
/* { dg-final { scan-tree-dump-times "\\\*p" 1 "dse1" } } */