Fix CASE_CHAIN typos
authorThomas Schwinge <thomas@codesourcery.com>
Mon, 13 Jun 2016 16:10:35 +0000 (18:10 +0200)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Mon, 13 Jun 2016 16:10:35 +0000 (18:10 +0200)
gcc/
* tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
* tree.def (CASE_LABEL_EXPR): Likewise.

From-SVN: r237384

gcc/ChangeLog
gcc/tree-cfg.c
gcc/tree.def

index c2f0f7ecf5e0b7e724a070deaac19df4b0867e20..733e5127ea37b3a1bf72654b0d8d100604427566 100644 (file)
@@ -1,3 +1,8 @@
+2016-06-13  Thomas Schwinge  <thomas@codesourcery.com>
+
+       * tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
+       * tree.def (CASE_LABEL_EXPR): Likewise.
+
 2016-06-13  Bernd Edlinger  <bernd.edlinger@hotmail.de>
 
        * input.c (test_builtins): Fix an assertion.
index 40e524bba9c340a4ada46b582e69fac41ced51c4..0fac49c38602a40e3422d113aa85d55b4c727d65 100644 (file)
@@ -1126,7 +1126,7 @@ make_cond_expr_edges (basic_block bb)
 /* Called for each element in the hash table (P) as we delete the
    edge to cases hash table.
 
-   Clear all the TREE_CHAINs to prevent problems with copying of
+   Clear all the CASE_CHAINs to prevent problems with copying of
    SWITCH_EXPRs and structure sharing rules, then free the hash table
    element.  */
 
index d16575aee6280d44730fef97872b4719464d8dd6..2c35540060954aafe68cc282d1b2c24a73f6351f 100644 (file)
@@ -949,7 +949,7 @@ DEFTREECODE (SWITCH_EXPR, "switch_expr", tcc_statement, 3)
    Operand 1 is CASE_HIGH.  If it is NULL_TREE, the label is a simple
      (one-value) case label.  If it is non-NULL_TREE, the case is a range.
    Operand 2 is CASE_LABEL, which is is the corresponding LABEL_DECL.
-   Operand 4 is CASE_CHAIN.  This operand is only used in tree-cfg.c to
+   Operand 3 is CASE_CHAIN.  This operand is only used in tree-cfg.c to
      speed up the lookup of case labels which use a particular edge in
      the control flow graph.  */
 DEFTREECODE (CASE_LABEL_EXPR, "case_label_expr", tcc_statement, 4)