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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr96335.c
blob
ab243b3d12966ed0afcd2513c314d7356ec26bc2
1
/* PR middle-end/96335 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
void
bar
(
int
,
void
*)
__attribute__
((
__access__
(
__read_only__
,
2
)));
6
7
void
8
foo
(
void
*
x
)
9
{
10
void
(*
fn
) () =
bar
;
11
fn
(
0
,
x
);
12
}