diff options
author | Jan Hubicka <jh@suse.cz> | 2002-03-07 16:38:00 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-03-07 15:38:00 +0000 |
commit | 068473ec92aa0bca1066db130b95abef40c6d418 (patch) | |
tree | c7a003366839afcd2db5a7c045eff45c5926c4b0 /gcc/reload1.c | |
parent | a9a437be8dc325ab24c33c3e2ebec3115b3ee53d (diff) | |
download | gcc-068473ec92aa0bca1066db130b95abef40c6d418.zip gcc-068473ec92aa0bca1066db130b95abef40c6d418.tar.gz gcc-068473ec92aa0bca1066db130b95abef40c6d418.tar.bz2 |
basic-block.h (fixup_abnormal_edges): Declare.
* basic-block.h (fixup_abnormal_edges): Declare.
* reload1.c (fixup_abnormal_edges): New function.
* reg-stack.c (convert_regs): Use it.
* gcse.c (insert_insn_end_bb): Handle trapping insns.
* gcse.c (hash_scan_set): Refuse instructions with EH edges.
From-SVN: r50405
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index a4a9c0c..3b4bb2d 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -459,7 +459,7 @@ static void failed_reload PARAMS ((rtx, int)); static int set_reload_reg PARAMS ((int, int)); static void reload_cse_delete_noop_set PARAMS ((rtx, rtx)); static void reload_cse_simplify PARAMS ((rtx)); -static void fixup_abnormal_edges PARAMS ((void)); +void fixup_abnormal_edges PARAMS ((void)); extern void dump_needs PARAMS ((struct insn_chain *)); /* Initialize the reload pass once per compilation. */ @@ -9465,7 +9465,7 @@ copy_eh_notes (insn, x) proper call and fix the damage. Similar handle instructions throwing exceptions internally. */ -static void +void fixup_abnormal_edges () { int i; |