diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-22 14:51:32 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-22 14:51:32 +0000 |
commit | 3612339f889f1ee7385b52a5ef2b3b7435fba1ca (patch) | |
tree | 8b1e78e7c9911f3b44410182b978347eaa7f85b7 /gcc/rtl.h | |
parent | 7a37f969179c9e7e0ef586e5e2940de6f6aa4087 (diff) | |
download | gcc-3612339f889f1ee7385b52a5ef2b3b7435fba1ca.tar.gz |
* jump.c (squeeze_notes): Take parms by reference. Handle END being
a squeezable note.
* rtl.h: Adjust.
* ifcvt.c (dead_or_predicable): Adjust.
* loop.c (find_and_verify_loops): Adjust.
* stmt.c (expand_end_case): Adjust.
* flow.c (merge_blocks_move_successor_nojumps): Adjust. Modify the
head and end insn pointers in the basic block, not just local copies.
(merge_blocks_move_predecessor_nojumps): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45107 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index b6066207724..819bf51bc03 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1284,7 +1284,7 @@ extern void mark_jump_label PARAMS ((rtx, rtx, int)); extern void cleanup_barriers PARAMS ((void)); /* In jump.c */ -extern rtx squeeze_notes PARAMS ((rtx, rtx)); +extern void squeeze_notes PARAMS ((rtx *, rtx *)); extern rtx delete_insn PARAMS ((rtx)); extern void delete_jump PARAMS ((rtx)); extern void delete_barrier PARAMS ((rtx)); |