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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr50890.c
blob
17240d4fb82344b62cd5f5817a3ff8b0d8da00a7
1
/* { dg-do compile } */
2
3
static float
make_insn_raw
(
void
)
4
{
5
return
0
;
6
}
7
8
static int
emit_pattern_after_noloc
(
int
(
make_raw
) ())
9
{
10
return
make_raw
();
11
}
12
13
void
emit_insn_after_noloc
(
void
)
14
{
15
emit_pattern_after_noloc
((
void
*)
make_insn_raw
);
16
}
17