From 97ff748cc2cc50aef20d0bab162a2f3fbc1f014a Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 22 Jun 2005 11:20:03 +0000 Subject: [PATCH] typos fixed removed old comment [r6091] --- ir/ana/irextbb.c | 8 +++----- ir/ana/irextbb.h | 4 ++-- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/ir/ana/irextbb.c b/ir/ana/irextbb.c index b26208945..d06c3debb 100644 --- a/ir/ana/irextbb.c +++ b/ir/ana/irextbb.c @@ -62,8 +62,6 @@ static void addto_extblk(ir_extblk *extblk, ir_node *block) /** * Pre block-walker. Calculates the extended block info. - * Currently, we use the (free) block input of all basis blocks - * to point to the leader block. */ static void pre_walk_calc_extbb(ir_node *block, void *ctx) { @@ -89,7 +87,7 @@ static void pre_walk_calc_extbb(ir_node *block, void *ctx) } else { /* - * Only on control flow predecessor. This block belongs + * Only one control flow predecessor. This block belongs * to the same extended basic block as its predecessor. */ set_Block_extbb(block, NULL); @@ -219,12 +217,12 @@ void (set_extbb_link)(ir_extblk *blk, void *link) { _set_extbb_link(blk, link); } -/* Return the number of basis blocks of an extended block */ +/* Return the number of basic blocks of an extended block */ int (get_extbb_n_blocks)(const ir_extblk *blk) { return _get_extbb_n_blocks(blk); } -/* Return the i'th basis block of an extended block */ +/* Return the i'th basic block of an extended block */ ir_node *(get_extbb_block)(ir_extblk *blk, int pos) { return _get_extbb_block(blk, pos); } diff --git a/ir/ana/irextbb.h b/ir/ana/irextbb.h index b537b25b9..4327e84a9 100644 --- a/ir/ana/irextbb.h +++ b/ir/ana/irextbb.h @@ -85,12 +85,12 @@ void *get_extbb_link(const ir_extblk *blk); void set_extbb_link(ir_extblk *blk, void *link); /** - * Return the number of basis blocks of an extended block + * Return the number of basic blocks of an extended block */ int get_extbb_n_blocks(const ir_extblk *blk); /** - * Return the i'th basis block of an extended block + * Return the i'th basic block of an extended block */ ir_node *get_extbb_block(ir_extblk *blk, int pos); -- 2.20.1