aboutsummaryrefslogtreecommitdiff
path: root/gcc/stmt.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-12-13 16:03:40 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-12-13 16:03:40 +0000
commitadb35797f70544f981828b4acf7c5be64e73a8b6 (patch)
treea9239b9b69ff7322c8b9e33630d97fd48ac2dcae /gcc/stmt.c
parent6e38fea3e4ef087b050ba2739ca26ae92b91e2ff (diff)
downloadgcc-adb35797f70544f981828b4acf7c5be64e73a8b6.zip
gcc-adb35797f70544f981828b4acf7c5be64e73a8b6.tar.gz
gcc-adb35797f70544f981828b4acf7c5be64e73a8b6.tar.bz2
defaults.h, [...]: Fix comment typos.
* defaults.h, stmt.c, tree-cfg.c, tree-ssa-dce.c: Fix comment typos. From-SVN: r92092
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r--gcc/stmt.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c
index 5e3f364..6e21b54 100644
--- a/gcc/stmt.c
+++ b/gcc/stmt.c
@@ -3041,11 +3041,12 @@ emit_case_nodes (rtx index, case_node_ptr node, rtx default_label,
else if (node->right != 0 && node->left == 0)
{
- /* Here we have a right child but no left so we issue conditional
+ /* Here we have a right child but no left so we issue a conditional
branch to default and process the right child.
- Omit the conditional branch to default if we it avoid only one
- right child; it costs too much space to save so little time. */
+ Omit the conditional branch to default if the right child
+ does not have any children and is single valued; it would
+ cost too much space to save so little time. */
if (node->right->right || node->right->left
|| !tree_int_cst_equal (node->right->low, node->right->high))