diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-09-11 22:39:34 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-09-11 22:39:34 +0000 |
commit | 9a1b6b7a98ebcbdfd4210edde604293e03ed6eba (patch) | |
tree | b469cd6db72a4e79549037180afa5a93d3451b03 /gcc/tree.h | |
parent | 73072611358be40e7201e5dc8c5d26e22e22febb (diff) | |
download | gcc-9a1b6b7a98ebcbdfd4210edde604293e03ed6eba.zip gcc-9a1b6b7a98ebcbdfd4210edde604293e03ed6eba.tar.gz gcc-9a1b6b7a98ebcbdfd4210edde604293e03ed6eba.tar.bz2 |
tree.h (expand_case): Move prototype ...
* tree.h (expand_case): Move prototype ...
* expr.h (expand_case): ...here.
(expand_sjlj_dispatch_table): New prototype.
* stmt.c: Include pointer-set.h instead of bitmap.h.
(expand_case): Use a pointer set instead of a bitmap for
already-seen labels. Fold label values here.
(add_case_node): Don't fold label values here.
(expand_sjlj_dispatch_table): New function.
* except.c (sjlj_emit_dispatch_table): Use it.
From-SVN: r191203
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -6117,7 +6117,6 @@ extern bool parse_input_constraint (const char **, int, int, int, int, const char * const *, bool *, bool *); extern void expand_asm_stmt (gimple); extern tree resolve_asm_operand_names (tree, tree, tree, tree); -extern void expand_case (gimple); #ifdef HARD_CONST /* Silly ifdef to avoid having all includers depend on hard-reg-set.h. */ extern tree tree_overlaps_hard_reg_set (tree, HARD_REG_SET *); |