diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-05 16:05:06 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-05 16:05:06 +0000 |
commit | 8c27b7d4d1b35fa0d2f514a98d0524eff2278e40 (patch) | |
tree | f62d741d707e9201cb9c5b7758045bd92d649415 /gcc/tree.h | |
parent | 2a7e31df70cf600dfaa401cb426578994739bce0 (diff) | |
download | gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.tar.gz |
c-common.c, [...]: Fix comment formatting.
* c-common.c, c-decl.c, combine.c, defaults.h, fold-const.c,
gimplify.c, gthr-nks.h, hooks.c, lambda-code.c, lambda-mat.c,
stor-layout.c, target.h, tree-cfg.c, tree-chrec.c,
tree-if-conv.c, tree-inline.c, tree-into-ssa.c,
tree-mudflap.c, tree-optimize.c, tree-scalar-evolution.c,
tree-ssa-alias.c, tree-ssa-ccp.c, tree-ssa-dce.c,
tree-ssa-pre.c, tree-vectorizer.c, tree-vectorizer.h, tree.h,
vec.h: Fix comment formatting.
From-SVN: r87105
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index 4d5830c62da..c078fdb55c7 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -1097,7 +1097,7 @@ struct tree_vec GTY(()) #define SET_EXPR_LOCATION(NODE, FROM) \ (EXPR_CHECK (NODE)->exp.locus = (FROM)) #define EXPR_HAS_LOCATION(NODE) (EXPR_LOCATION (NODE) != UNKNOWN_LOCATION) -/* EXPR_LOCUS and SET_EXPR_LOCUS are deprecated. */ +/* EXPR_LOCUS and SET_EXPR_LOCUS are deprecated. */ #define EXPR_LOCUS(NODE) \ (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (NODE))) \ ? &(NODE)->exp.locus \ @@ -1430,7 +1430,7 @@ struct tree_block GTY(()) #define TYPE_DEBUG_REPRESENTATION_TYPE(NODE) (VECTOR_TYPE_CHECK (NODE)->type.values) /* For record and union types, information about this type, as a base type - for itself. */ + for itself. */ #define TYPE_BINFO(NODE) (RECORD_OR_UNION_CHECK(NODE)->type.binfo) /* For non record and union types, used in a language-dependent way. */ @@ -2369,7 +2369,7 @@ struct tree_value_handle GTY(()) /* Unique ID for this value handle. IDs are handed out in a conveniently dense form starting at 0, so that we can make - bitmaps of value handles. */ + bitmaps of value handles. */ unsigned int id; }; @@ -3109,7 +3109,7 @@ extern void put_pending_sizes (tree); /* If nonzero, an upper limit on alignment of structure fields, in bits, */ extern unsigned int maximum_field_alignment; -/* and its original value in bytes, specified via -fpack-struct=<value>. */ +/* and its original value in bytes, specified via -fpack-struct=<value>. */ extern unsigned int initial_max_fld_align; /* If nonzero, the alignment of a bitstring or (power-)set value, in bits. */ |