c-pragma.c (handle_pragma_token): Wrap variables name' and
value' in HANDLE_PRAGMA_WEAK.
* c-pragma.c (handle_pragma_token): Wrap variables `name' and `value' in HANDLE_PRAGMA_WEAK. Wrap variable `align' in HANDLE_PRAGMA_PACK||HANDLE_PRAGMA_PACK_PUSH_POP. * genrecog.c (make_insn_sequence): Call memset, not bzero. * jump.c (find_insert_position): Don't declare or define unless !HAVE_conditional_arithmetic. (returnjump_p_1, delete_prior_computation): Add static prototypes. * mips-tdump.c (fatal, fancy_abort, main): Add extern prototypes. * recog.c (offsettable_address_p): Prototype function pointer. (preprocess_constraints): Call memset, not bzero. * tree.c (tree_node_kind_names): Constify a char*. Make static. (gcc_obstack_init): Don't declare. (fix_sizetype): Add static prototype. (gcc_obstack_init): Use prototype casts in call to _obstack_begin. (tree_cons): Call memset, not bzero. * varasm.c (remove_from_pending_weak_list): Wrap declaration and definition in macro ASM_WEAKEN_LABEL. (mark_const_hash_entry): Add static prototype. From-SVN: r29410
This commit is contained in:
parent
da09e3172d
commit
341a243eaf
@ -1,3 +1,30 @@
|
||||
Tue Sep 14 14:14:28 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* c-pragma.c (handle_pragma_token): Wrap variables `name' and
|
||||
`value' in HANDLE_PRAGMA_WEAK. Wrap variable `align' in
|
||||
HANDLE_PRAGMA_PACK||HANDLE_PRAGMA_PACK_PUSH_POP.
|
||||
|
||||
* genrecog.c (make_insn_sequence): Call memset, not bzero.
|
||||
|
||||
* jump.c (find_insert_position): Don't declare or define unless
|
||||
!HAVE_conditional_arithmetic.
|
||||
(returnjump_p_1, delete_prior_computation): Add static prototypes.
|
||||
|
||||
* mips-tdump.c (fatal, fancy_abort, main): Add extern prototypes.
|
||||
|
||||
* recog.c (offsettable_address_p): Prototype function pointer.
|
||||
(preprocess_constraints): Call memset, not bzero.
|
||||
|
||||
* tree.c (tree_node_kind_names): Constify a char*. Make static.
|
||||
(gcc_obstack_init): Don't declare.
|
||||
(fix_sizetype): Add static prototype.
|
||||
(gcc_obstack_init): Use prototype casts in call to _obstack_begin.
|
||||
(tree_cons): Call memset, not bzero.
|
||||
|
||||
* varasm.c (remove_from_pending_weak_list): Wrap declaration and
|
||||
definition in macro ASM_WEAKEN_LABEL.
|
||||
(mark_const_hash_entry): Add static prototype.
|
||||
|
||||
Tue Sep 14 12:22:50 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* c-lex.c (handle_generic_pragma): Remove unused variable `c'.
|
||||
|
@ -235,9 +235,13 @@ handle_pragma_token (string, token)
|
||||
{
|
||||
static enum pragma_state state = ps_start;
|
||||
static enum pragma_state type;
|
||||
#ifdef HANDLE_PRAGMA_WEAK
|
||||
static char * name;
|
||||
static char * value;
|
||||
#endif
|
||||
#if defined(HANDLE_PRAGMA_PACK) || defined(HANDLE_PRAGMA_PACK_PUSH_POP)
|
||||
static int align;
|
||||
#endif
|
||||
static tree id;
|
||||
|
||||
/* If we have reached the end of the #pragma directive then
|
||||
|
@ -225,8 +225,8 @@ make_insn_sequence (insn, type)
|
||||
int new_size;
|
||||
new_size = (insn_name_ptr_size ? insn_name_ptr_size * 2 : 512);
|
||||
insn_name_ptr = xrealloc (insn_name_ptr, sizeof(char *) * new_size);
|
||||
bzero (insn_name_ptr + insn_name_ptr_size,
|
||||
sizeof(char *) * (new_size - insn_name_ptr_size));
|
||||
memset (insn_name_ptr + insn_name_ptr_size, 0,
|
||||
sizeof(char *) * (new_size - insn_name_ptr_size));
|
||||
insn_name_ptr_size = new_size;
|
||||
}
|
||||
|
||||
|
@ -124,9 +124,11 @@ static int delete_labelref_insn PROTO((rtx, rtx, int));
|
||||
static void mark_modified_reg PROTO((rtx, rtx));
|
||||
static void redirect_tablejump PROTO((rtx, rtx));
|
||||
static void jump_optimize_1 PROTO ((rtx, int, int, int, int));
|
||||
#ifndef HAVE_cc0
|
||||
#if ! defined(HAVE_cc0) && ! defined(HAVE_conditional_arithmetic)
|
||||
static rtx find_insert_position PROTO((rtx, rtx));
|
||||
#endif
|
||||
static int returnjump_p_1 PROTO((rtx *, void *));
|
||||
static void delete_prior_computation PROTO((rtx, rtx));
|
||||
|
||||
/* Main external entry point into the jump optimizer. See comments before
|
||||
jump_optimize_1 for descriptions of the arguments. */
|
||||
@ -5450,7 +5452,7 @@ rtx_equal_for_thread_p (x, y, yinsn)
|
||||
}
|
||||
|
||||
|
||||
#ifndef HAVE_cc0
|
||||
#if !defined(HAVE_cc0) && !defined(HAVE_conditional_arithmetic)
|
||||
/* Return the insn that NEW can be safely inserted in front of starting at
|
||||
the jump insn INSN. Return 0 if it is not safe to do this jump
|
||||
optimization. Note that NEW must contain a single set. */
|
||||
|
@ -56,8 +56,10 @@ typedef const PTR_T CPTR_T;
|
||||
#define uint unsigned int
|
||||
#define ulong unsigned long
|
||||
|
||||
|
||||
static void
|
||||
void fatal PROTO ((const char *)) ATTRIBUTE_NORETURN;
|
||||
void fancy_abort PROTO ((void)) ATTRIBUTE_NORETURN;
|
||||
|
||||
void
|
||||
fatal(s)
|
||||
const char *s;
|
||||
{
|
||||
@ -1439,6 +1441,8 @@ read_tfile __proto((void))
|
||||
|
||||
|
||||
|
||||
extern int main PROTO ((int, char **));
|
||||
|
||||
int
|
||||
main (argc, argv)
|
||||
int argc;
|
||||
|
@ -1828,7 +1828,8 @@ offsettable_address_p (strictp, mode, y)
|
||||
register rtx z;
|
||||
rtx y1 = y;
|
||||
rtx *y2;
|
||||
int (*addressp) () = (strictp ? strict_memory_address_p : memory_address_p);
|
||||
int (*addressp) PROTO ((enum machine_mode, rtx)) =
|
||||
(strictp ? strict_memory_address_p : memory_address_p);
|
||||
|
||||
if (CONSTANT_ADDRESS_P (y))
|
||||
return 1;
|
||||
@ -2062,7 +2063,7 @@ preprocess_constraints ()
|
||||
{
|
||||
int i;
|
||||
|
||||
bzero (recog_op_alt, sizeof recog_op_alt);
|
||||
memset (recog_op_alt, 0, sizeof recog_op_alt);
|
||||
for (i = 0; i < recog_data.n_operands; i++)
|
||||
{
|
||||
int j;
|
||||
|
11
gcc/tree.c
11
gcc/tree.c
@ -209,7 +209,7 @@ int tree_node_counts[(int)all_kinds];
|
||||
int tree_node_sizes[(int)all_kinds];
|
||||
int id_string_size = 0;
|
||||
|
||||
const char *tree_node_kind_names[] = {
|
||||
static const char * const tree_node_kind_names[] = {
|
||||
"decls",
|
||||
"types",
|
||||
"blocks",
|
||||
@ -272,8 +272,7 @@ static void set_type_quals PROTO((tree, int));
|
||||
static void append_random_chars PROTO((char *));
|
||||
static void build_real_from_int_cst_1 PROTO((PTR));
|
||||
static void mark_type_hash PROTO ((void *));
|
||||
|
||||
void gcc_obstack_init ();
|
||||
static void fix_sizetype PROTO ((tree));
|
||||
|
||||
/* If non-null, a language specific helper for unsave_expr_now. */
|
||||
|
||||
@ -332,8 +331,8 @@ gcc_obstack_init (obstack)
|
||||
#define OBSTACK_CHUNK_FREE free
|
||||
#endif
|
||||
_obstack_begin (obstack, OBSTACK_CHUNK_SIZE, 0,
|
||||
(void *(*) ()) OBSTACK_CHUNK_ALLOC,
|
||||
(void (*) ()) OBSTACK_CHUNK_FREE);
|
||||
(void *(*) PROTO ((long))) OBSTACK_CHUNK_ALLOC,
|
||||
(void (*) PROTO ((void *))) OBSTACK_CHUNK_FREE);
|
||||
}
|
||||
|
||||
/* Save all variables describing the current status into the structure
|
||||
@ -2046,7 +2045,7 @@ tree_cons (purpose, value, chain)
|
||||
else
|
||||
{
|
||||
node = (tree) obstack_alloc (current_obstack, sizeof (struct tree_list));
|
||||
bzero (node, sizeof (struct tree_common));
|
||||
memset (node, 0, sizeof (struct tree_common));
|
||||
}
|
||||
|
||||
#ifdef GATHER_STATISTICS
|
||||
|
@ -177,7 +177,9 @@ static void mark_constants PROTO((rtx));
|
||||
static int output_addressed_constants PROTO((tree));
|
||||
static void output_after_function_constants PROTO((void));
|
||||
static void output_constructor PROTO((tree, int));
|
||||
#ifdef ASM_WEAKEN_LABEL
|
||||
static void remove_from_pending_weak_list PROTO ((char *));
|
||||
#endif
|
||||
#ifdef ASM_OUTPUT_BSS
|
||||
static void asm_output_bss PROTO((FILE *, tree, char *, int, int));
|
||||
#endif
|
||||
@ -188,6 +190,7 @@ static void asm_output_aligned_bss PROTO((FILE *, tree, char *, int, int));
|
||||
#endif /* BSS_SECTION_ASM_OP */
|
||||
static void mark_pool_constant PROTO((struct pool_constant *));
|
||||
static void mark_pool_sym_hash_table PROTO((struct pool_sym **));
|
||||
static void mark_const_hash_entry PROTO((void *));
|
||||
|
||||
static enum in_section { no_section, in_text, in_data, in_named
|
||||
#ifdef BSS_SECTION_ASM_OP
|
||||
@ -4445,6 +4448,7 @@ weak_finish ()
|
||||
/* Remove NAME from the pending list of weak symbols. This prevents
|
||||
the compiler from emitting multiple .weak directives which confuses
|
||||
some assemblers. */
|
||||
#ifdef ASM_WEAKEN_LABEL
|
||||
static void
|
||||
remove_from_pending_weak_list (name)
|
||||
char *name ATTRIBUTE_UNUSED;
|
||||
@ -4461,6 +4465,7 @@ remove_from_pending_weak_list (name)
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
void
|
||||
assemble_alias (decl, target)
|
||||
|
Loading…
Reference in New Issue
Block a user