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-ssa-pre.c | |
parent | 2a7e31df70cf600dfaa401cb426578994739bce0 (diff) | |
download | gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.zip gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.tar.gz gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.tar.bz2 |
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-ssa-pre.c')
-rw-r--r-- | gcc/tree-ssa-pre.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c index 1267a54..2bdf885 100644 --- a/gcc/tree-ssa-pre.c +++ b/gcc/tree-ssa-pre.c @@ -225,7 +225,7 @@ typedef struct value_set /* An unordered bitmap set. One bitmap tracks values, the other, - expressions. */ + expressions. */ typedef struct bitmap_set { bitmap expressions; @@ -321,7 +321,7 @@ static htab_t phi_translate_table; typedef struct expr_pred_trans_d { - /* The expression. */ + /* The expression. */ tree e; /* The predecessor block along which we translated the expression. */ @@ -371,7 +371,7 @@ expr_pred_trans_eq (const void *p1, const void *p2) /* Search in the phi translation table for the translation of expression E in basic block PRED. Return the translated value, if - found, NULL otherwise. */ + found, NULL otherwise. */ static inline tree phi_trans_lookup (tree e, basic_block pred) @@ -703,7 +703,7 @@ bitmap_set_subtract_from_value_set (value_set_t a, bitmap_set_t b, return ret; } -/* Return true if two sets are equal. */ +/* Return true if two sets are equal. */ static bool set_equal (value_set_t a, value_set_t b) @@ -1533,7 +1533,7 @@ insert_aux (basic_block block) fprintf (dump_file, "\n"); } - /* Make the necessary insertions. */ + /* Make the necessary insertions. */ for (pred = block->pred; pred; pred = pred->pred_next) |