diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-01 14:36:37 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-01 14:36:37 +0000 |
commit | 977b748639a036a81a9aa55066610b8cfffa8ca5 (patch) | |
tree | bb8069991fe0d464d3ab57a7480539813f81726c /gcc | |
parent | 972e95afaffecaf703dd98d0a45abe625c47e375 (diff) | |
download | gcc-977b748639a036a81a9aa55066610b8cfffa8ca5.tar.gz |
* bb-reorder.c, fold-const.c, varasm.c: Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97395 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/bb-reorder.c | 2 | ||||
-rw-r--r-- | gcc/fold-const.c | 6 | ||||
-rw-r--r-- | gcc/varasm.c | 2 |
4 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cbd884f7fd3..56a28793ffe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-04-01 Kazu Hirata <kazu@cs.umass.edu> + + * bb-reorder.c, fold-const.c, varasm.c: Fix comment typos. + 2005-04-01 Nathan Sidwell <nathan@codesourcery.com> * local-alloc.c (update_equiv_regs): Use gcc_assert, gcc_unreachable. diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index b0c99b134e9..f540ab1e2b7 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1779,7 +1779,7 @@ add_reg_crossing_jump_notes (void) (e->src))); } -/* Hot and cold basic blocks are partitioneed and put in separate +/* Hot and cold basic blocks are partitioned and put in separate sections of the .o file, to reduce paging and improve cache performance (hopefully). This can result in bits of code from the same function being widely separated in the .o file. However this diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 4ac921b3a55..c2242574c36 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -10177,7 +10177,7 @@ fold_checksum_tree (tree expr, struct md5_ctx *ctx, htab_t ht) #endif /* Fold a unary tree expression with code CODE of type TYPE with an - operand OP0. Return a folded expresion if successful. Otherwise, + operand OP0. Return a folded expression if successful. Otherwise, return a tree expression with code CODE of type TYPE with an operand OP0. */ @@ -10192,7 +10192,7 @@ fold_build1 (enum tree_code code, tree type, tree op0) } /* Fold a binary tree expression with code CODE of type TYPE with - operands OP0 and OP1. Return a folded expresion if successful. + operands OP0 and OP1. Return a folded expression if successful. Otherwise, return a tree expression with code CODE of type TYPE with operands OP0 and OP1. */ @@ -10207,7 +10207,7 @@ fold_build2 (enum tree_code code, tree type, tree op0, tree op1) } /* Fold a ternary tree expression with code CODE of type TYPE with - operands OP0, OP1, and OP2. Return a folded expresion if + operands OP0, OP1, and OP2. Return a folded expression if successful. Otherwise, return a tree expression with code CODE of type TYPE with operands OP0, OP1, and OP2. */ diff --git a/gcc/varasm.c b/gcc/varasm.c index b567c38cbc6..64861ef2df3 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -129,7 +129,7 @@ char *hot_section_end_label; char *cold_section_end_label; -/* The following global variable indicates the seciton name to be used +/* The following global variable indicates the section name to be used for the current cold section, when partitiong hot and cold basic blocks into separate sections. */ |