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
/
restrict-6.c
blob
7c5ed0119cb37c17eb28e84d388594011ae18ddd
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-fre1" } */
3
4
void
5
test
(
int
*
a
,
int
*
b
,
int
*
__restrict__ v
)
6
{
7
*
a
= *
v
;
8
*
b
= *
v
;
9
}
10
11
/* { dg-final { scan-tree-dump-times "= \\*v" 1 "fre1" } } */