diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-07-22 23:15:30 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-07-22 23:15:30 +0000 |
commit | 938d968ed373057812cd43a9b420399fb65f6c0b (patch) | |
tree | 218203f16ff3e11b33a888e58c0921f40c76b2e5 /gcc/regclass.c | |
parent | b3147029a5847526b07b9d4823e3beec3c315402 (diff) | |
download | gcc-938d968ed373057812cd43a9b420399fb65f6c0b.zip gcc-938d968ed373057812cd43a9b420399fb65f6c0b.tar.gz gcc-938d968ed373057812cd43a9b420399fb65f6c0b.tar.bz2 |
alias.c: Fix comment formatting.
* alias.c: Fix comment formatting.
* c-common.c: Likewise.
* c-decl.c: Likewise.
* c-opts.c: Likewise.
* combine.c: Likewise.
* cpplib.c: Likewise.
* diagnostic.c: Likewise.
* dojump.c: Likewise.
* final.c: Likewise.
* fold-const.c: Likewise.
* gcc.c: Likewise.
* gcse.c: Likewise.
* ggc-page.c: Likewise.
* jump.c: Likewise.
* loop.c: Likewise.
* mips-tfile.c: Likewise.
* recog.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* tree.c: Likewise.
* tree.h: Likewise.
From-SVN: r69689
Diffstat (limited to 'gcc/regclass.c')
-rw-r--r-- | gcc/regclass.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/regclass.c b/gcc/regclass.c index b48f2e6..ec636d7 100644 --- a/gcc/regclass.c +++ b/gcc/regclass.c @@ -340,7 +340,7 @@ init_reg_sets_1 (void) continue; subclass1: - /* keep the largest subclass */ /* SPEE 900308 */ + /* Keep the largest subclass. */ /* SPEE 900308 */ GO_IF_HARD_REG_SUBSET (reg_class_contents[k], reg_class_contents[(int) reg_class_subunion[i][j]], subclass2); @@ -2156,7 +2156,7 @@ allocate_reg_info (size_t num_regs, int new_p, int renumber_p) { size_t old_allocated = regno_allocated; - regno_allocated = num_regs + (num_regs / 20); /* add some slop space */ + regno_allocated = num_regs + (num_regs / 20); /* Add some slop space. */ size_renumber = regno_allocated * sizeof (short); if (!reg_n_info) @@ -2171,7 +2171,7 @@ allocate_reg_info (size_t num_regs, int new_p, int renumber_p) { VARRAY_GROW (reg_n_info, regno_allocated); - if (new_p) /* if we're zapping everything, no need to realloc */ + if (new_p) /* If we're zapping everything, no need to realloc. */ { free ((char *) renumber); free ((char *) reg_pref); |