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
/
alias-27.c
blob
f2b11fc4228ffe8fb573d2075f02513a52dde099
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -fdump-tree-optimized" } */
3
4
void
f
(
long
*
p
) {
5
*
p
=
42
;
6
p
[
4
] =
42
;
7
__builtin_memset
(
p
,
0
,
100
);
8
}
9
10
/* { dg-final { scan-tree-dump-not "= 42" "optimized" } } */