]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gimple.c: GIMPLE statements have subcodes, not sub-codes.
authorThomas Schwinge <thomas@codesourcery.com>
Fri, 11 Oct 2013 10:42:17 +0000 (12:42 +0200)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Fri, 11 Oct 2013 10:42:17 +0000 (12:42 +0200)
gcc/
* gimple.c: GIMPLE statements have subcodes, not sub-codes.
* gimple.h: Likewise.

From-SVN: r203415

gcc/ChangeLog
gcc/gimple.c
gcc/gimple.h

index 5f4b0ae24990937e1f74e0ca1e1f5a14b2de730e..21c603ed5257670f6debae21c31d776b113a93a1 100644 (file)
@@ -1,5 +1,8 @@
 2013-10-11  Thomas Schwinge  <thomas@codesourcery.com>
 
+       * gimple.c: GIMPLE statements have subcodes, not sub-codes.
+       * gimple.h: Likewise.
+
        * doc/generic.texi (OpenMP): OMP_CLAUSE_* are subcodes, not
        sub-codes.
 
index 37a8123ada194ac79f7e852f8e2251ebb040c30b..f3191aa749a86d93f7e02d4fb1c4423db1235dd6 100644 (file)
@@ -157,7 +157,7 @@ gimple_set_subcode (gimple g, unsigned subcode)
 
 
 /* Build a tuple with operands.  CODE is the statement to build (which
-   must be one of the GIMPLE_WITH_OPS tuples).  SUBCODE is the sub-code
+   must be one of the GIMPLE_WITH_OPS tuples).  SUBCODE is the subcode
    for the new tuple.  NUM_OPS is the number of operands to allocate.  */
 
 #define gimple_build_with_ops(c, s, n) \
@@ -429,7 +429,7 @@ gimple_build_assign_stat (tree lhs, tree rhs MEM_STAT_DECL)
 }
 
 
-/* Build a GIMPLE_ASSIGN statement with sub-code SUBCODE and operands
+/* Build a GIMPLE_ASSIGN statement with subcode SUBCODE and operands
    OP1 and OP2.  If OP2 is NULL then SUBCODE must be of class
    GIMPLE_UNARY_RHS or GIMPLE_SINGLE_RHS.  */
 
index 2af4ff932a824d0e27481777b5764200d88d1d58..822274a29f06009a55b62a3e6c8560fa4b3fb731 100644 (file)
@@ -82,7 +82,7 @@ enum gimple_rhs_class
 
 /* Specific flags for individual GIMPLE statements.  These flags are
    always stored in gimple_statement_base.subcode and they may only be
-   defined for statement codes that do not use sub-codes.
+   defined for statement codes that do not use subcodes.
 
    Values for the masks can overlap as long as the overlapping values
    are never used in the same statement class.