diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-10 15:09:39 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-10 15:09:39 +0000 |
commit | 89dbed81f485455d27b9822c1de921571580fe65 (patch) | |
tree | eba8a248439b41ccd8953fe4272dee8155596f4d /gcc/c-common.c | |
parent | 094e84faf02b3bc9c09cfadf76110965176d688f (diff) | |
download | gcc-89dbed81f485455d27b9822c1de921571580fe65.zip gcc-89dbed81f485455d27b9822c1de921571580fe65.tar.gz gcc-89dbed81f485455d27b9822c1de921571580fe65.tar.bz2 |
bb-reorder.c, [...]: Fix comment typos.
* bb-reorder.c, c-common.c, c-incpath.c, c-typeck.c,
genrecog.c, lambda-code.c, mips-tdump.c, mips-tfile.c,
passes.c, tree-data-ref.c, tree-data-ref.h, tree-mudflap.c,
tree-scalar-evolution.c, tree-ssa-copyrename.c,
tree-ssa-live.c, tree-ssa-live.h: Fix comment typos.
From-SVN: r87302
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index c0d276b..2b13588 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -1441,14 +1441,14 @@ check_case_value (tree value) } /* See if the case values LOW and HIGH are in the range of the original - type (ie. before the default conversion to int) of the switch testing + type (i.e. before the default conversion to int) of the switch testing expression. TYPE is the promoted type of the testing expression, and ORIG_TYPE is the type before promoting it. CASE_LOW_P is a pointer to the lower bound of the case label, and CASE_HIGH_P is the upper bound or NULL if the case is not a case range. The caller has to make sure that we are not called with NULL for - CASE_LOW_P (ie. the default case). + CASE_LOW_P (i.e. the default case). Returns true if the case label is in range of ORIG_TYPE (satured or untouched) or false if the label is out of range. */ |