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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr21840.c
blob
bec3d6bf5d7e2c23c79da897fdfe316504e9d25c
1
void
fn_show_state
(
void
);
2
typedef
void
(*
fn_handler_fn
)(
void
);
3
static
fn_handler_fn fn_handler
[
1
];
4
5
void
k_spec
(
unsigned char
value
)
6
{
7
void
*
func
=
fn_handler
[
value
];
8
if
(
func
==
fn_show_state
)
9
return
;
10
fn_handler
[
value
]();
11
}