diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-27 12:48:07 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-27 12:48:07 +0000 |
commit | f712a0dcd3010d64361b11d5f7b7d71700f69aab (patch) | |
tree | c2f7682329bf354ca96d9ae19d6a6cfe4312c16a /gcc/varasm.c | |
parent | 5d822c0058e6e4da7d30bd003fd9696370a88aef (diff) | |
download | gcc-f712a0dcd3010d64361b11d5f7b7d71700f69aab.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57587 138bc75d-0d04-0410-961f-82ee72b054a4
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 702cf82446d..0ff605f7b13 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. |