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
2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr48213.c
blob
cf7d76fa0ea1e31de685f9af308cd1e6b34b3ccf
1
/* PR target/48213 */
2
/* { dg-do compile } */
3
/* { dg-options "-g -O2" } */
4
/* { dg-options "-g -O2 -fpic" { target fpic } } */
5
6
struct
S
{
int
(*
s
) (
void
); };
7
int
bar
(
void
);
8
9
void
10
foo
(
struct
S
*
x
)
11
{
12
if
(
x
->
s
!=
bar
)
13
bar
();
14
}