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 _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr43879_2.c
blob
8155653a6279fd972304353cc6af497de4cd08bb
1
struct
TBL
{
2
int
(*
p
)(
int
*
i
);
3
};
4
5
extern
void
bar
(
int
i
);
6
extern
void
baz
(
int
*
i
);
7
8
static int
foo
(
int
*
i
)
9
{
10
bar
(*
i
);
11
baz
(
i
);
12
bar
(*
i
);
13
return
*
i
;
14
}
15
16
struct
TBL tbl
= {
foo
};
17