]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix typo in comment in basic-block.h
authorDodji Seketeli <dodji@redhat.com>
Wed, 25 Jul 2012 13:08:14 +0000 (13:08 +0000)
committerDodji Seketeli <dodji@gcc.gnu.org>
Wed, 25 Jul 2012 13:08:14 +0000 (15:08 +0200)
gcc/

* basic-block.c: Fix typo in comment.

From-SVN: r189845

gcc/ChangeLog
gcc/basic-block.h

index 576eb263edfa6028f2b1c13b56b65e371dceaeb7..051d5e00b84b70407a5bc61ee6332910ac3f76d0 100644 (file)
@@ -1,3 +1,7 @@
+2012-07-25  Dodji Seketeli  <dodji@redhat.com>
+
+       * basic-block.c: Fix typo in comment.
+
 2012-07-25  Kirill Yukhin  <kirill.yukhin@intel.com>
            Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
 
index 15d34e0e1ac8be1b651dc77bb5edb37c029d089b..dff06e4e69f9beac6171c7b1d29692835abf9310 100644 (file)
@@ -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.