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
/
pr67891.c
blob
792690e426adc9c9a0da11d8fdf2546542dd7195
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-fre1" } */
3
4
unsigned int
a
, *
b
;
5
unsigned short
c
;
6
int
d
;
7
8
void
9
fn1
()
10
{
11
b
= &
d
;
12
*
b
=
c
=
a
;
13
*
b
=
d
;
14
}
15
16
/* We should remove all loads but that from a. */
17
/* { dg-final { scan-tree-dump-not "= \[dbc\];" "fre1" } } */