diff options
author | Richard Henderson <rth@gcc.gnu.org> | 1999-09-02 10:29:25 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-09-02 10:29:25 -0700 |
commit | e2bef702d6db5181253b7edd7f9ca9c88abedd00 (patch) | |
tree | 983023b55501936201b52db239d4a15278e92b74 /gcc/except.c | |
parent | ec4f972f6cd8c1801cb78b2e81c52529e70d39a5 (diff) | |
download | gcc-e2bef702d6db5181253b7edd7f9ca9c88abedd00.zip gcc-e2bef702d6db5181253b7edd7f9ca9c88abedd00.tar.gz gcc-e2bef702d6db5181253b7edd7f9ca9c88abedd00.tar.bz2 |
dwarf2out.c (dwarf2out_line): Constify `lastfile'.
* dwarf2out.c (dwarf2out_line): Constify `lastfile'.
* except.c (expand_rethrow): Remove unused variable.
* expr.c (do_jump_by_parts_greater_rtx): Likewise.
* flow.c (replace_insns): Likewise.
(create_edge_list, verify_edge_list): Likewise.
* gcse.c (cprop_cc0_jump): Protect declaration with HAVE_cc0.
* genemit.c (gen_expand): Only emit `operands[N]' decl if there
is special code to run.
(main): Don't define operands to emit_operand.
* genrecog.c (main): Don't emit an empty peephole2_insn function.
* rtl.h (NOTE_BASIC_BLOCK): Use X0BBDEF.
* alpha/alpha.h (normal_memory_operand): Declare.
(reg_no_subreg_operand): Declare.
* alpha/elf.h (ASM_DECLARE_OBJECT_NAME): Use HOST_WIDE_INT_PRINT_DEC.
From-SVN: r29061
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/except.c b/gcc/except.c index cc6a8d1..6cc8465 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -1907,7 +1907,7 @@ expand_rethrow (label) else if (flag_new_exceptions) { - rtx insn, val; + rtx insn; int region; if (label == NULL_RTX) label = last_rethrow_symbol; |