From 4eb00163ad2a600403a9b36fdc7a47fd79ce98e6 Mon Sep 17 00:00:00 2001 From: Jeffrey Oldham Date: Sat, 22 Jul 2000 23:29:14 +0000 Subject: collect2.c (main): Typo fixed. 2000-07-22 Jeffrey Oldham * 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. From-SVN: r35194 --- gcc/flow.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'gcc/flow.c') diff --git a/gcc/flow.c b/gcc/flow.c index 7019dbf..7bebfa8 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -535,9 +535,10 @@ count_basic_blocks (f) return count; } -/* Scan a list of insns for labels referrred to other than by jumps. +/* Scan a list of insns for labels referred to other than by jumps. This is used to scan the alternatives of a call placeholder. */ -static rtx find_label_refs (f, lvl) +static rtx +find_label_refs (f, lvl) rtx f; rtx lvl; { @@ -3188,7 +3189,7 @@ calculate_global_regs_live (blocks_in, blocks_out, flags) /* If any bits were removed from live_at_end, we'll have to rescan the block. This wouldn't be necessary if we had precalculated local_live, however with PROP_SCAN_DEAD_CODE - local_live is really dependant on live_at_end. */ + local_live is really dependent on live_at_end. */ CLEAR_REG_SET (tmp); rescan = bitmap_operation (tmp, bb->global_live_at_end, new_live_at_end, BITMAP_AND_COMPL); @@ -4554,7 +4555,7 @@ mark_regno_cond_dead (pbi, regno, cond) { /* If this is a store to a predicate register, the value of the predicate is changing, we don't know that the predicate as seen - before is the same as that seen after. Flush all dependant + before is the same as that seen after. Flush all dependent conditions from reg_cond_dead. This will make all such conditionally live registers unconditionally live. */ if (REGNO_REG_SET_P (pbi->reg_cond_reg, regno)) @@ -6575,16 +6576,16 @@ verify_flow_info () /* Functions to access an edge list with a vector representation. Enough data is kept such that given an index number, the - pred and succ that edge reprsents can be determined, or - given a pred and a succ, it's index number can be returned. - This allows algorithms which comsume a lot of memory to + pred and succ that edge represents can be determined, or + given a pred and a succ, its index number can be returned. + This allows algorithms which consume a lot of memory to represent the normally full matrix of edge (pred,succ) with a single indexed vector, edge (EDGE_INDEX (pred, succ)), with no wasted space in the client code due to sparse flow graphs. */ /* This functions initializes the edge list. Basically the entire flowgraph is processed, and all edges are assigned a number, - and the data structure is filed in. */ + and the data structure is filled in. */ struct edge_list * create_edge_list () { @@ -6676,7 +6677,7 @@ print_edge_list (f, elist) } } -/* This function provides an internal consistancy check of an edge list, +/* This function provides an internal consistency check of an edge list, verifying that all edges are present, and that there are no extra edges. */ void @@ -6904,7 +6905,7 @@ remove_fake_edges () remove_fake_successors (ENTRY_BLOCK_PTR); } -/* This functions will add a fake edge between any block which has no +/* This function will add a fake edge between any block which has no successors, and the exit block. Some data flow equations require these edges to exist. */ void -- cgit v1.1