aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBen Elliston <bje@gcc.gnu.org>2004-06-24 21:43:34 +1000
committerBen Elliston <bje@gcc.gnu.org>2004-06-24 21:43:34 +1000
commit79a4758dd5744731bad51286b13943b77abed1c3 (patch)
treeb533dfa0be58af15d0b9c289cf5cf4e65585f541 /gcc
parent0cc3dda8302dcb7e042fccd493b1810118450f93 (diff)
downloadgcc-79a4758dd5744731bad51286b13943b77abed1c3.zip
gcc-79a4758dd5744731bad51286b13943b77abed1c3.tar.gz
gcc-79a4758dd5744731bad51286b13943b77abed1c3.tar.bz2
* doc/cfg.texi (Edges): Fix typo.
From-SVN: r83591
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/doc/cfg.texi2
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4a87edd..0ea99f4 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2004-06-24 Ben Elliston <bje@au.ibm.com>
+
+ * doc/cfg.texi (Edges): Fix typo.
+
2004-06-24 Paul Brook <paul@codesourcery.com>
* config/arm/arm.c (arm_output_epilogue): Remove excess checks.
@@ -19,7 +23,7 @@
* c-gimplify.c (gimplify_decl_stmt): Push gimplify_one_sizepos inside
non-constant size check. Gimplify the type too. Tidy building
- BUILT_IN_STACK_ALLOC call
+ BUILT_IN_STACK_ALLOC call.
2004-06-23 Roger Sayle <roger@eyesopen.com>
diff --git a/gcc/doc/cfg.texi b/gcc/doc/cfg.texi
index 58a890c..b42d171 100644
--- a/gcc/doc/cfg.texi
+++ b/gcc/doc/cfg.texi
@@ -146,7 +146,7 @@ link between two basic blocks: the @code{src} member of an edge
points to the predecessor basic block of the @code{dest} basic block.
The members @code{pred} and @code{succ} of the @code{basic_block} data
type point to single linked lists of edges to the predecessors and
-successorts of the block. The edges are linked via the
+successors of the block. The edges are linked via the
@code{succ_next} and @code{pred_next} members of the @code{edge} data
type.