diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-12-13 16:03:40 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-12-13 16:03:40 +0000 |
commit | adb35797f70544f981828b4acf7c5be64e73a8b6 (patch) | |
tree | a9239b9b69ff7322c8b9e33630d97fd48ac2dcae /gcc/stmt.c | |
parent | 6e38fea3e4ef087b050ba2739ca26ae92b91e2ff (diff) | |
download | gcc-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.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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)) |