diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-06-25 03:45:13 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-25 03:45:13 +0000 |
commit | e5b0e711e87da60282d32ee364bfc9ca77fa6360 (patch) | |
tree | c2b021a4a8de95063140b929ef51eba3db07fa55 /gcc/jump.c | |
parent | b9ba01a11f30733eb45554f8820d4084724d308c (diff) | |
download | gcc-e5b0e711e87da60282d32ee364bfc9ca77fa6360.tar.gz |
jump.c (next_nondeleted_insn): Remove.
* jump.c (next_nondeleted_insn): Remove.
* rtl.h: Remove the prototype for next_nondeleted_insn.
From-SVN: r68453
Diffstat (limited to 'gcc/jump.c')
-rw-r--r-- | gcc/jump.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/jump.c b/gcc/jump.c index a7d7dc21c7e..630524bb356 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -1834,18 +1834,6 @@ delete_related_insns (insn) return next; } - -/* Advance from INSN till reaching something not deleted - then return that. May return INSN itself. */ - -rtx -next_nondeleted_insn (insn) - rtx insn; -{ - while (INSN_DELETED_P (insn)) - insn = NEXT_INSN (insn); - return insn; -} /* Delete a range of insns from FROM to TO, inclusive. This is for the sake of peephole optimization, so assume |