diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-09-27 12:48:07 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-27 12:48:07 +0000 |
commit | 0e9e1e0a42eff5ec265470b7e8928cb3b3ad2d70 (patch) | |
tree | c2f7682329bf354ca96d9ae19d6a6cfe4312c16a /gcc/varasm.c | |
parent | b9b575e6b5d26806b2d45c1d5c392fa2c2734de2 (diff) | |
download | gcc-0e9e1e0a42eff5ec265470b7e8928cb3b3ad2d70.zip gcc-0e9e1e0a42eff5ec265470b7e8928cb3b3ad2d70.tar.gz gcc-0e9e1e0a42eff5ec265470b7e8928cb3b3ad2d70.tar.bz2 |
LANGUAGES: Follow spelling conventions.
* LANGUAGES: Follow spelling conventions.
* rtl.def: Likewise.
* sbitmap.c: Likewise.
* sched-int.h: Likewise.
* sched-rgn.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* ssa.c: Likewise.
* stab.def: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* target.h: Likewise.
* timevar.c: Likewise.
* toplev.c: Likewise.
* tree-dump.c: Likewise.
* tree-inline.c: Likewise.
* tree.c: Likewise.
* tree.def: Likewise.
* tree.h: Likewise.
* unroll.c: Likewise.
* varasm.c: Likewise.
* vmsdbgout.c: Likewise.
* treelang/treelang.texi: Likewise.
* treelang/treetree.c: Likewise.
From-SVN: r57587
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 702cf82..0ff605f 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -195,7 +195,7 @@ static enum in_section { no_section, in_text, in_data, in_named #endif } in_section = no_section; -/* Return a non-zero value if DECL has a section attribute. */ +/* Return a nonzero value if DECL has a section attribute. */ #ifndef IN_NAMED_SECTION #define IN_NAMED_SECTION(DECL) \ ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \ @@ -1138,7 +1138,7 @@ default_ctor_section_asm_out_constructor (symbol, priority) #endif /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with - a non-zero value if the constant pool should be output before the + a nonzero value if the constant pool should be output before the start of the function, or a zero value if the pool should output after the end of the function. The default is to put it before the start. */ @@ -1945,7 +1945,7 @@ default_assemble_integer (x, size, aligned_p) /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is the alignment of the integer in bits. Return 1 if we were able to output - the constant, otherwise 0. If FORCE is non-zero, abort if we can't output + the constant, otherwise 0. If FORCE is nonzero, abort if we can't output the constant. */ bool @@ -2228,7 +2228,7 @@ const_str_htab_hash (x) return STRHASH (((const struct deferred_string *) x)->label); } -/* Returns non-zero if the value represented by X (which is really a +/* Returns nonzero if the value represented by X (which is really a struct deferred_string *) is the same as that given by Y (which is really a char *). */ @@ -2648,7 +2648,7 @@ copy_constant (exp) Otherwise, output such a constant in memory (or defer it for later) and generate an rtx for it. - If DEFER is non-zero, the output of string constants can be deferred + If DEFER is nonzero, the output of string constants can be deferred and output only if referenced in the function after all optimizations. The TREE_CST_RTL of EXP is set up to point to that rtx. |