aboutsummaryrefslogtreecommitdiff
path: root/gcc/profile.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2002-09-08 12:47:27 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-09-08 12:47:27 +0000
commit4b7e68e7d25c3cb3c45ef898d3a1ac4e52741619 (patch)
tree1597dda2c873e24f24656f766f741b0d4814230e /gcc/profile.c
parent2567406a17362fdf2f3b7150d1c006b87c63ee1f (diff)
downloadgcc-4b7e68e7d25c3cb3c45ef898d3a1ac4e52741619.zip
gcc-4b7e68e7d25c3cb3c45ef898d3a1ac4e52741619.tar.gz
gcc-4b7e68e7d25c3cb3c45ef898d3a1ac4e52741619.tar.bz2
basic-block.h: Fix comment formatting.
* basic-block.h: Fix comment formatting. * c-common.c: Likewise. * c-common.h: Likewise. * c-lex.c: Likewise. * c-pretty-print.c: Likewise. * cfglayout.c: Likewise. * cfgloop.c: Likewise. * defaults.h: Likewise. * et-forest.c: Likewise. * explow.c: Likewise. * function.h: Likewise. * gcov.c: Likewise. * genattrtab.c: Likewise. * gengtype.c: Likewise. * ifcvt.c: Likewise. * libgcc2.c: Likewise. * loop.c: Likewise. * profile.c: Likewise. * ra-build.c: Likewise. * real.c: Likewise. * rtl.h: Likewise. * tracer.c: Likewise. * tree-inline.c: Likewise. * varasm.c: Likewise. From-SVN: r56952
Diffstat (limited to 'gcc/profile.c')
-rw-r--r--gcc/profile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/profile.c b/gcc/profile.c
index 528fc6f..37e0c81 100644
--- a/gcc/profile.c
+++ b/gcc/profile.c
@@ -91,18 +91,18 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
struct edge_info {
unsigned int count_valid : 1;
- /* Is on the spanning tree. */
+ /* Is on the spanning tree. */
unsigned int on_tree : 1;
/* Pretend this edge does not exist (it is abnormal and we've
- inserted a fake to compensate). */
+ inserted a fake to compensate). */
unsigned int ignore : 1;
};
struct bb_info {
unsigned int count_valid : 1;
- /* Number of successor and predecessor edges. */
+ /* Number of successor and predecessor edges. */
gcov_type succ_count;
gcov_type pred_count;
};