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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr60770-1.c
blob
021d88430c4ac265e93d8931086216d2fae4b4b8
1
/* { dg-do compile } */
2
/* { dg-options "-O -Wall" } */
3
4
int
f
(
int
n
){
5
int
*
p
;
6
{
7
int
yyy
=
n
;
8
p
=&
yyy
;
9
}
10
return
*
p
;
/* { dg-warning "yyy" } */
11
}