- 09 Jun, 2002 3 commits
-
-
* genautomata.c: Don't include ctype.h or limits.h. Use ISSPACE, not isspace. * gengtype-lex.l: Don't include ctype.h and use ISSPACE/ISIDNUM in lieu of isspace/IDchar. * gengtype.c: Likewise for ctype.h and ISALNUM vs isalnum. * read-rtl.c: Likewise for ctype.h. Don't define ISDIGIT or ISSPACE. From-SVN: r54392
Kaveh R. Ghazi committed -
From-SVN: r54391
Jason Thorpe committed -
* Makefile.in (LIBCPP_OBJS): Take out version.o. * cpphash.h (cpp_reader): Take out print_version member. * cppinit.c: (cpp_handle_option): Don't do anything with -version. Just set help_only for --version, --target-help. Just set verbose option for -v. (cpp_post_options): Don't print a version string. From-SVN: r54390
Zack Weinberg committed
-
- 08 Jun, 2002 18 commits
-
-
* config/avr/avr.c (TARGET_SECTION_TYPE_FLAGS): New. (avr_section_type_flags): New, handle .noinit* sections. From-SVN: r54389
Marek Michalkiewicz committed -
* config/sh/netbsd-elf.h (SUBTARGET_EXTRA_SPECS): Define and include netbsd_entry_point. (SUBTARGET_LINK_SPEC): Define as NETBSD_LINK_SPEC_ELF. (NETBSD_ENTRY_POINT): Define. From-SVN: r54388
Jason Thorpe committed -
* config/sh/sh.h (SUBTARGET_EXTRA_SPECS): Define empty if not already defined. (EXTRA_SPECS): Add SUBTARGET_EXTRA_SPECS. From-SVN: r54387
Jason Thorpe committed -
* config/avr/avr.c (avr_regs_to_save): No need to save any registers in a noreturn function. (avr_output_function_prologue, avr_output_function_epilogue): Correct function size calculation. Do not crash on empty function. (avr_output_function_epilogue): No need for epilogue after a BARRIER. From-SVN: r54386
Marek Michalkiewicz committed -
* config/mips/netbsd.h (SUBTARGET_EXTRA_SPECS): Add netbsd_link_spec and netbsd_entry_point. (LINK_SPEC): Use %(netbsd_link_spec). (NETBSD_ENTRY_POINT): Define. From-SVN: r54385
Jason Thorpe committed -
2002-06-08 H.J. Lu (hjl@gnu.org) * jcf-path.c (jcf_path_init): Allocate 1 more byte for string. From-SVN: r54384
H.J. Lu committed -
* config/sparc/netbsd-elf.h (LINK_ARCH32_SPEC): Only specify linker emulation. (LINK_ARCH64_SPEC): Likewise. (LINK_SPEC, NETBSD_ENTRY_POINT): Define. (SUBTARGET_EXTRA_SPECS): Add netbsd_link_spec and netbsd_entry_point. From-SVN: r54382
Jason Thorpe committed -
2002-06-08 Paolo Carlini <pcarlini@unitus.it> * testsuite/backwards/strstream_members.cc: New. 2002-06-08 Benjamin Kosnik <bkoz@redhat.com> * include/backwards/strstream: Format. * src/strstream.cc: Format. 2002-06-08 Andreas Schwab <schwab@suse.de> * src/strstream.cc (strstreambuf::overflow): Set _M_buf, _M_buf_size and _M_buf_size_opt to the new buffer and size. From-SVN: r54375
Benjamin Kosnik committed -
From-SVN: r54374
Marc Espie committed -
* lcm.c (optimize_mode_switching): Add unused attribute for variable. * sched-deps.c (sched_analyze): Remove unused variable. From-SVN: r54372
Andreas Jaeger committed -
2002-06-08 Benjamin Kosnik <bkoz@redhat.com> * config/os/generic/bits/ctype_noninline.h: Tweak format. From-SVN: r54371
Benjamin Kosnik committed -
From-SVN: r54370
Gabriel Dos Reis committed -
* config/m68k/netbsd-elf.h (EXTRA_SPECS): Add netbsd_entry_point. (LINK_SPEC): Define as NETBSD_LINK_SPEC_ELF. (NETBSD_ENTRY_POINT): Define. From-SVN: r54368
Jason Thorpe committed -
From-SVN: r54367
GCC Administrator committed -
* config/i386/netbsd-elf.h (LINK_SPEC): Define as NETBSD_LINK_SPEC_ELF. (SUBTARGET_EXTRA_SPECS): Add netbsd_entry_point. (NETBSD_ENTRY_POINT): Define. * config/i386/netbsd64.h (LINK_SPEC): Use %(netbsd_link_spec). (SUBTARGET_EXTRA_SPECS): Add netbsd_link_spec and netbsd_entry_point. (NETBSD_ENTRY_POINT): Define. From-SVN: r54362
Jason Thorpe committed -
* config/alpha/netbsd.h (SUBTARGET_EXTRA_SPECS): Add netbsd_link_spec and netbsd_entry_point. (LINK_SPEC): Use %(netbsd_link_spec). (NETBSD_ENTRY_POINT): Define. From-SVN: r54361
Jason Thorpe committed -
* config/netbsd-elf.h (LINK_SPEC): Rename to... (NETBSD_LINK_SPEC_ELF): ...this. Use %(netbsd_entry_point) to specify program entry point. From-SVN: r54360
Jason Thorpe committed -
* emit-rtl.c (init_emit): Add hard registers to regno_reg_rtx. * combine.c (move_deaths): Use regno_reg_rtx for hard regs rather than creating a new register. (distribute_notes): Likewise. * df.c (df_reg_use_gen): Likewise. (df_reg_clobber_gen): Likewise. (df_ref_record): Likewise. * expr.c (use_regs): Likewise. * flow.c (propagate_one_insn): Likewise. (mark_set_1): Likewise. (mark_used_reg): Likewise. * reload.c (emit_reload_insns): Likewise. From-SVN: r54358
Jeff Law committed
-
- 07 Jun, 2002 19 commits
-
-
simplify-rtx.c (simplify_gen_relational): Simplify RTL of the form (ne (comp x y) 0) into (comp x y) where comp is a... * simplify-rtx.c (simplify_gen_relational): Simplify RTL of the form (ne (comp x y) 0) into (comp x y) where comp is a comparison code. Simplify (eq (comp x y) 0) into (revcomp x y) if the sense of the comparison code comp can be reversed. From-SVN: r54357
Roger Sayle committed -
* fold-const.c (fold) [EQ_EXPR]: Place both integer and real constants last in comparisons. Optimize (x+1.0)>0.0 into the equivalent x > -1.0 when -ffast-math. * gcc.dg/20020607-2.c: New test case. From-SVN: r54356
Roger Sayle committed -
* config.gcc (mips*-*-netbsd*): Add mips/t-netbsd to ${tmake_file}. * config/mips/t-netbsd: New file. From-SVN: r54353
Jason Thorpe committed -
* cppinit.c (COMMAND_LINE_OPTIONS): Give all relevant -W options their own entries. (parse_option): Clarify comment. (cpp_handle_option): Remove 'ignore' parameter and OPT_W special case. Replace if/strcmp chain for -W options with use of new OPT_* entries for them. (cpp_handle_options): Update to match. * cpplib.h: Remove last parameter to cpp_handle_option from prototype. * c-decl.c, cp/decl2.c: Update call to cpp_handle_option. From-SVN: r54352
Zack Weinberg committed -
* src/locale-inst.cc (__codecvt_abstract_base): Put inside _GLIBCPP_USE_WCHAR_T ifdef. * include/bits/istream.tcc (basic_istream): Ditto. (ws) Ditto. (operator>>) Ditto. * include/bits/ostream.tcc (basic_ostream): Ditto. (endl): Ditto. (ends): Ditto. (flush): Ditto. (operator<<): Ditto. From-SVN: r54351
Steve Ellcey committed -
From-SVN: r54350
Jason Merrill committed -
2002-06-07 Phil Edwards <pme@gcc.gnu.org> * mkcheck.in: Link against local testsuite library. * testsuite/testsuite_hooks.h (__set_testsuite_memlimit): Move null implementation out... * testsuite/testsuite_hooks.cc: ...to here. From-SVN: r54349
Phil Edwards committed -
2002-06-07 Akim Demaille <akim@epita.fr> * gengtype-yacc.y (optionseqopt): Add the ending `;' to the action. Whitespace changes. From-SVN: r54348
Akim Demaille committed -
* sched-deps.c (free_deps): Avoid calling free_INSN_LIST_list on empty lists. From-SVN: r54347
Jeff Law committed -
From-SVN: r54346
Matt Kraai committed -
2002-06-07 H.J. Lu (hjl@gnu.org) * configure.in: Add --enable-__cxa_atexit. * configure: Regenerated. * config.in: Likewise. * defaults.h (DEFAULT_USE_CXA_ATEXIT): New. Defined to be 0 if not defined. 2002-06-07 H.J. Lu (hjl@gnu.org) * decl2.c (flag_use_cxa_atexit): Set to DEFAULT_USE_CXA_ATEXIT. From-SVN: r54345
H.J. Lu committed -
From-SVN: r54343
Gabriel Dos Reis committed -
From-SVN: r54342
Jakub Jelinek committed -
From-SVN: r54340
Jason Thorpe committed -
* cppexp.c (num_equality_op): Use a temporary variable to work around gcc 3.0.4 bug. From-SVN: r54339
Jason Merrill committed -
From-SVN: r54337
Gabriel Dos Reis committed -
From-SVN: r54336
GCC Administrator committed -
* cpptrad.c (struct block, BLOCK_HEADER_LEN, BLOCK_LEN, scan_parameters, save_replacement_text, replacement_length): New. (scan_out_logical_line): Take a macro and save parameters if non-NULL. (_cpp_logical_line_trad): Update. (_cpp_create_trad_definition): Update to handle function-like macros. * cpplex.c (new_buff): Update. (struct dummy, DEFAULT_ALIGNMENT, CPP_ALIGN): Move... * cpphash.h: ...here. (CPP_ALIGN2, _cpp_save_parameter): New. * cppmacro.c (save_parameter): Rename, export. (parse_params): Update. From-SVN: r54331
Neil Booth committed -
* config/mmix/mmix.c: Remove extra broken prototype for mmix_init_machine_status. From-SVN: r54330
Andreas Jaeger committed
-