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-7.c
blob
f7a68c7b03cfb514092d354cfb900de1577c9a7b
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-fre1" } */
3
4
int
5
f
(
int
*
__restrict__
*
__restrict__
*
__restrict__ a
,
int
*
b
)
6
{
7
*
b
=
1
;
8
***
a
=
2
;
9
return
*
b
;
10
}
11
12
/* { dg-final { scan-tree-dump-times "return 1" 1 "fre1" } } */