diff options
author | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-22 23:29:14 +0000 |
---|---|---|
committer | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-22 23:29:14 +0000 |
commit | 9588521d18d4e00cb634ddd1d5d2e57be874dab5 (patch) | |
tree | 905decf88d64625f2e335c550face23d4df5671f /gcc/rtlanal.c | |
parent | 9912d2870a855d71a49808d9ff9419caf8d4337b (diff) | |
download | gcc-9588521d18d4e00cb634ddd1d5d2e57be874dab5.tar.gz |
2000-07-22 Jeffrey Oldham <oldham@codesourcery.com>
* collect2.c (main): Typo fixed.
* diagnostic.c: Typo fixed.
* dwarf2out.c (dwarf2out_frame_debug_expr): Typo fixed.
* eh-common.h: Typo fixed.
* emit-rtl.c (start_sequence): Typo fixed.
* flow.c (find_label_refs): Typo fixed.
(calculate_global_regs_live): Typo fixed.
(mark_regno_cond_dead): Typo fixed.
(create_edge_list): Typos fixed.
(verify_edge_list): Typo fixed.
* ggc-common.c (ggc_mark_rtx_children): Typo fixed.
* loop.c (strength_reduce): Typo in function name fixed.
* rtl.h: Added comments. Typo in function name fixed.
* rtlanal.c: Typo in function name fixed.
(insn_dependant_p): Rename to ...
(insn_dependent_p): ... this.
(computed_jumo_p): Typo fixed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35194 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 8af6c7c1ffe..e7cc12f2806 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA. */ static int rtx_addr_can_trap_p PARAMS ((rtx)); static void reg_set_p_1 PARAMS ((rtx, rtx, void *)); -static void insn_dependant_p_1 PARAMS ((rtx, rtx, void *)); +static void insn_dependent_p_1 PARAMS ((rtx, rtx, void *)); static void reg_set_last_1 PARAMS ((rtx, rtx, void *)); @@ -689,11 +689,11 @@ modified_in_p (x, insn) return 0; } -/* Return true if anything in insn X is (anti,output,true) dependant on +/* Return true if anything in insn X is (anti,output,true) dependent on anything in insn Y. */ int -insn_dependant_p (x, y) +insn_dependent_p (x, y) rtx x, y; { rtx tmp; @@ -702,22 +702,22 @@ insn_dependant_p (x, y) abort (); tmp = PATTERN (y); - note_stores (PATTERN (x), insn_dependant_p_1, &tmp); + note_stores (PATTERN (x), insn_dependent_p_1, &tmp); if (tmp == NULL_RTX) return 1; tmp = PATTERN (x); - note_stores (PATTERN (y), insn_dependant_p_1, &tmp); + note_stores (PATTERN (y), insn_dependent_p_1, &tmp); if (tmp == NULL_RTX) return 1; return 0; } -/* A helper routine for insn_dependant_p called through note_stores. */ +/* A helper routine for insn_dependent_p called through note_stores. */ static void -insn_dependant_p_1 (x, pat, data) +insn_dependent_p_1 (x, pat, data) rtx x; rtx pat ATTRIBUTE_UNUSED; void *data; @@ -2113,7 +2113,7 @@ jmp_uses_reg_or_mem (x) /* Return nonzero if INSN is an indirect jump (aka computed jump). Tablejumps and casesi insns are not considered indirect jumps; - we can recognize them by a (use (lael_ref)). */ + we can recognize them by a (use (label_ref)). */ int computed_jump_p (insn) |