diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2000-02-19 01:27:00 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2000-02-18 20:27:00 -0500 |
commit | c8d8ed65a5366c075cce9ee64e871d815fd1f33d (patch) | |
tree | 4e76f0295c3501797dbd329a63105f6a7c70f1e9 /gcc/cppinit.c | |
parent | 1f51a99218e6eb4214e6a40e9937a7cc419f1e95 (diff) | |
download | gcc-c8d8ed65a5366c075cce9ee64e871d815fd1f33d.zip gcc-c8d8ed65a5366c075cce9ee64e871d815fd1f33d.tar.gz gcc-c8d8ed65a5366c075cce9ee64e871d815fd1f33d.tar.bz2 |
bitmap.c (bitmap_operation): Avoid using -1 for index since unsigned.
* bitmap.c (bitmap_operation): Avoid using -1 for index since unsigned.
* cppinit.c (new_pending_define): Add cast to avoid warning.
* expmed.c (extract_bit_field): Likewise.
* flow.c (enum reorder_skip_type): New type.
(skip_insns_between_blcok): New it.
Rework to avoid warning about possibly undefined variable.
* function.c (assign_parms): Make thisparm_boundary unsigned.
* genrecog.c (write_switch): Cast XWINT result to int.
* lcm.c: Many static fcns and vars now #ifdef OPTIMIZE_MODE_SWITCHING.
* mips-tfile.c (init_file): Make two versions of FDR intializer:
one for MIPS and one for Alpha.
(get_tag, copy_object): Add casts to avoid warnings.
* optabs.c (init_one_libfunc): Cast NAME to (char *).
* reload.c (find_reloads): Make TYPE enum reload_type.
* sbitmap.c (dump_sbitmap): J is unsigned; don't use "1L".
* unroll.c (unroll_loop): Initialize UNROLL_NUMBER.
* varasm.c (compare_constant_1): Add cast to avoid warning.
* config/alpha/alpha.c (alpha_emit_xfloating_libcall): Cast FUNC
to (char *).
(alpha_expand_unaligned_load, alpha_expand_unaligned_store):
Cast switch operand of size to int.
(alpha_expand_epilogue): Always initialize fp_offset and sa_reg.
* config/alpha/alpha.h (INITIAL_ELIMINATION_OFFSET): Add abort
in unhandled case.
From-SVN: r32060
Diffstat (limited to 'gcc/cppinit.c')
-rw-r--r-- | gcc/cppinit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cppinit.c b/gcc/cppinit.c index b7d2301..5e05511 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -1058,7 +1058,7 @@ new_pending_define (opts, text) struct pending_option *o = (struct pending_option *) xmalloc (sizeof (struct pending_option)); - o->arg = text; + o->arg = (char *) text; o->next = NULL; o->undef = 0; APPEND (opts->pending, define, o); @@ -1067,6 +1067,7 @@ new_pending_define (opts, text) /* Handle one command-line option in (argc, argv). Can be called multiple times, to handle multiple sets of options. Returns number of strings consumed. */ + int cpp_handle_option (pfile, argc, argv) cpp_reader *pfile; |