diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-07 15:38:00 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-07 15:38:00 +0000 |
commit | 17a54dacac1ed10bf76d9e35f23d9817e0e91e03 (patch) | |
tree | c7a003366839afcd2db5a7c045eff45c5926c4b0 /gcc/reload1.c | |
parent | 080f56ab2fcefcccb529e087cb5bc04a75391fe5 (diff) | |
download | gcc-17a54dacac1ed10bf76d9e35f23d9817e0e91e03.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50405 138bc75d-0d04-0410-961f-82ee72b054a4
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 a4a9c0cfa91..3b4bb2d0cbd 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; |