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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr86124.c
blob
218b48295f79dfe8dde333e9e771b8247eea01b7
1
/* { dg-do compile } */
2
/* { dg-options "-O -fipa-pta" } */
3
4
extern
void
a
(
void
);
5
6
void
b
(
void
)
7
{
8
void
*
c
;
9
c
=
a
;
10
*(
char
*)
c
=
1
;
11
}