diff options
author | Dodji Seketeli <dodji@redhat.com> | 2012-07-25 13:08:14 +0000 |
---|---|---|
committer | Dodji Seketeli <dodji@gcc.gnu.org> | 2012-07-25 15:08:14 +0200 |
commit | 229ecb89356fe16fac2bf2a90f47e8c9325898b1 (patch) | |
tree | aa7df2c16bf769887039912e23ceafcdd9a1ed61 /gcc/basic-block.h | |
parent | e61c94dd3123dc9942e9fed6eb79d741a69b4ab4 (diff) | |
download | gcc-229ecb89356fe16fac2bf2a90f47e8c9325898b1.zip gcc-229ecb89356fe16fac2bf2a90f47e8c9325898b1.tar.gz gcc-229ecb89356fe16fac2bf2a90f47e8c9325898b1.tar.bz2 |
Fix typo in comment in basic-block.h
gcc/
* basic-block.c: Fix typo in comment.
From-SVN: r189845
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. |