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
Add qdf24xx base tuning support.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr38200.c
blob
d5391bd889e8fd0f0a146a1d3fc7d5ae47f9b4c0
1
/* PR middle-end/38200 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fno-strict-aliasing" } */
4
5
typedef
int
(*
callptr
) (
void
);
6
int
foo
(
void
**
x
);
7
void
foo2
(
callptr
*);
8
int
(*
foo_ptr
) (
void
**
x
) =
foo
;
9
10
void
11
bar
(
void
)
12
{
13
void
*
ptr
;
14
foo2
((
callptr
*) &
ptr
);
15
*(
void
**) &
foo_ptr
=
ptr
;
16
}