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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr38140.c
blob
35f6010089ef020aac0f3f5676ea8a506b8eac80
1
/* PR middle-end/38140 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fno-strict-aliasing" } */
4
5
int
foo
(
void
*
x
)
6
{
7
int
(*
fn
) (
int
);
8
*(
void
**)&
fn
=
x
;
9
return
fn
(
6
);
10
}