diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-09-22 14:09:34 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-22 14:09:34 +0000 |
commit | cc2902df52a39b343d5094a39d3e6efb868015de (patch) | |
tree | d2db7ebbe3f404f7fa5e30b7ecf4ac4675f5b518 /gcc/function.c | |
parent | 4bc38b68640a996a5a1a9e870a707836ca32bfa9 (diff) | |
download | gcc-cc2902df52a39b343d5094a39d3e6efb868015de.zip gcc-cc2902df52a39b343d5094a39d3e6efb868015de.tar.gz gcc-cc2902df52a39b343d5094a39d3e6efb868015de.tar.bz2 |
dbxout.c: Follow spelling conventions.
* dbxout.c: Follow spelling conventions.
* defaults.h: Likewise.
* df.c: Likewise.
* diagnostic.h: Likewise.
* doloop.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* emit-rtl.c: Likewise.
* except.c: Likewise.
* explow.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* expr.h: Likewise.
* flags.h: Likewise.
* flow.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* function.h: Likewise.
* gcc.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
* genattrtab.c: Likewise.
* genconfig.c: Likewise.
* genrecog.c: Likewise.
* ggc-page.c: Likewise.
* ggc.h: Likewise.
* global.c: Likewise.
* gthr-win32.h: Likewise.
* integrate.c: Likewise.
* jump.c: Likewise.
* langhooks.c: Likewise.
* langhooks.h: Likewise.
* line-map.h: Likewise.
* local-alloc.c: Likewise.
* longlong.h: Likewise.
* loop.c: Likewise.
* loop.h: Likewise.
From-SVN: r57406
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/function.c b/gcc/function.c index edc1581..374ed3c 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -181,13 +181,13 @@ struct temp_slot GTY(()) tree type; /* The value of `sequence_rtl_expr' when this temporary is allocated. */ tree rtl_expr; - /* Non-zero if this temporary is currently in use. */ + /* Nonzero if this temporary is currently in use. */ char in_use; - /* Non-zero if this temporary has its address taken. */ + /* Nonzero if this temporary has its address taken. */ char addr_taken; /* Nesting level at which this slot is being used. */ int level; - /* Non-zero if this should survive a call to free_temp_slots. */ + /* Nonzero if this should survive a call to free_temp_slots. */ int keep; /* The offset of the slot from the frame_pointer, including extra space for alignment. This info is for combine_temp_slots. */ @@ -3284,7 +3284,7 @@ insns_for_mem_hash (k) return (hashval_t) m->key; } -/* Return non-zero if K1 and K2 (two REGs) are the same. */ +/* Return nonzero if K1 and K2 (two REGs) are the same. */ static int insns_for_mem_comp (k1, k2) @@ -3640,7 +3640,7 @@ instantiate_decls_1 (let, valid_only) /* Subroutine of the preceding procedures: Given RTL representing a decl and the size of the object, do any instantiation required. - If VALID_ONLY is non-zero, it means that the RTL should only be + If VALID_ONLY is nonzero, it means that the RTL should only be changed if the new address is valid. */ static void @@ -5204,7 +5204,7 @@ promoted_input_arg (regno, pmode, punsignedp) The starting offset and size for this parm are returned in *OFFSET_PTR and *ARG_SIZE_PTR, respectively. - IN_REGS is non-zero if the argument will be passed in registers. It will + IN_REGS is nonzero if the argument will be passed in registers. It will never be set if REG_PARM_STACK_SPACE is not defined. FNDECL is the function in which the argument was defined. |