From: Dodji Seketeli Date: Wed, 25 Jul 2012 13:08:14 +0000 (+0000) Subject: Fix typo in comment in basic-block.h X-Git-Tag: upstream/12.2.0~75087 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=229ecb89356fe16fac2bf2a90f47e8c9325898b1;p=platform%2Fupstream%2Fgcc.git Fix typo in comment in basic-block.h gcc/ * basic-block.c: Fix typo in comment. From-SVN: r189845 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 576eb26..051d5e0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2012-07-25 Dodji Seketeli + + * basic-block.c: Fix typo in comment. + 2012-07-25 Kirill Yukhin Michael Zolotukhin diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 15d34e0..dff06e4 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -108,7 +108,7 @@ struct GTY(()) gimple_bb_info { gimple_seq phi_nodes; }; -/* A basic block is a sequence of instructions with only entry and +/* A basic block is a sequence of instructions with only one entry and only one exit. If any one of the instructions are executed, they will all be executed, and in sequence from first to last.