diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-26 22:25:14 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-26 22:25:14 +0000 |
commit | 7fd957fe27f5a1bbe4243691ea4f70bae08b844c (patch) | |
tree | 778e5c00812009bde0b1783be2f952fd29b9acd0 /gcc/regclass.c | |
parent | 4c7e800416ea780ea1790a4ddb464b9d175cc49f (diff) | |
download | gcc-7fd957fe27f5a1bbe4243691ea4f70bae08b844c.tar.gz |
* c-common.h: Follow spelling conventions.
* cpplex.c: Likewise.
* cpplib.h: Likewise.
* gthr-dce.h: Likewise.
* gthr-posix.h: Likewise.
* optabs.c: Likewise.
* output.h: Likewise.
* profile.c: Likewise.
* protoize.c: Likewise.
* ra-rewrite.c: Likewise.
* real.c: Likewise.
* recog.c: Likewise.
* reg-stack.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* reload.c: Likewise.
* reload.h: Likewise.
* reload1.c: Likewise.
* reorg.c: Likewise.
* resource.c: Likewise.
* rtl.h: Likewise.
* rtlanal.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57555 138bc75d-0d04-0410-961f-82ee72b054a4
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 672ee98fdff..e229826d7fc 100644 --- a/gcc/regclass.c +++ b/gcc/regclass.c @@ -220,7 +220,7 @@ static int may_move_out_cost[MAX_MACHINE_MODE][N_REG_CLASSES][N_REG_CLASSES]; static int forbidden_inc_dec_class[N_REG_CLASSES]; -/* Indexed by n, is non-zero if (REG n) is used in an auto-inc or auto-dec +/* Indexed by n, is nonzero if (REG n) is used in an auto-inc or auto-dec context. */ static char *in_inc_dec; @@ -254,7 +254,7 @@ struct reg_info_data { struct reg_info_data *next; /* next set of reg_info structures */ size_t min_index; /* minimum index # */ size_t max_index; /* maximum index # */ - char used_p; /* non-zero if this has been used previously */ + char used_p; /* nonzero if this has been used previously */ reg_info data[1]; /* beginning of the reg_info data */ }; @@ -1904,7 +1904,7 @@ record_reg_classes (n_alts, n_ops, ops, modes, } } -/* Compute the cost of loading X into (if TO_P is non-zero) or from (if +/* Compute the cost of loading X into (if TO_P is nonzero) or from (if TO_P is zero) a register of class CLASS in mode MODE. X must not be a pseudo. */ |