summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* * cpphash.c: Move cpp_defined here from cpplib.c.neil2000-11-095-64/+57
| | | | | | | | | | * cpplib.c: Update comments, move cpp_defined to cpphash.c. * cpplex.c (_cpp_lex_token): Don't leave the lexer at EOL. * cppmacro.c (cpp_get_token): Update comments, no need now to catch the CPP_EOF meaning EOL case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37345 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/sparc/sparc.c (sparc_va_arg): When the required alignmentgeoffk2000-11-092-6/+36
| | | | | | | is more than that provided, copy to a temporary. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37344 138bc75d-0d04-0410-961f-82ee72b054a4
* * g++.old-deja/g++.brendan/err-msg8.C: Adjust error line.nathan2000-11-092-1/+3
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37343 138bc75d-0d04-0410-961f-82ee72b054a4
* * mklibgcc.in (EXTRA_MULTILIB_PARTS): Prevent `make' fromaoliva2000-11-093-2/+23
| | | | | | | | | | interpreting $out as a macro assignment. * Makefile.in (T_TARGET): New auxiliary macro and target. (all): Add a target right in the beginning, so that we don't build T_TARGET by default. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37342 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/i386/i386.md (mmx_pinsrw): Output operands in correctgrahams2000-11-092-6/+11
| | | | | | | | | | order for -mintel-syntax. Remove comment now that the operand order has been checked. (mmx_pextrw): Likewise. (mmx_pshufw): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37341 138bc75d-0d04-0410-961f-82ee72b054a4
* gcp/ChangeLog:nathan2000-11-096-4/+31
| | | | | | | | | | | | * lex.c (do_identifier): Don't lookup_name for operators. * parse.y (operator): Save looking_for_typename. (unoperator): Restore it. * spew.c (frob_opname): Use nth_token for lookahead. testsuite/ChangeLog: * g++.old-deja/g++.pt/operator1.C: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37340 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.dg/20001108-1.c: New test.jakub2000-11-092-0/+34
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37339 138bc75d-0d04-0410-961f-82ee72b054a4
* * builtins.c (c_strlen): Use TREE_STRING_LENGTH - 1 for max.jakub2000-11-099-130/+496
| | | | | | | | | | | | | | | | | | | | | | | | | | | (c_getstr): New function. (expand_builtin_strstr): Do nothing if -fcheck-memory-usage. If both arguments are constant string, optimize out. (expand_builtin_strchr, expand_builtin_strrchr): New functions. (expand_builtin_strpbrk): Use c_getstr, do nothing if -fcheck-memory-usage. (expand_builtin_fputs): Likewise. (expand_builtin_strcmp): Add MODE argument. Use even if !HAVE_cmpstrsi. Optimize the case when both arguments are constant strings. (expand_builtin): Adjust expand_builtin_strcmp caller. Call expand_builtin_strchr and expand_builtin_strrchr. * c-common.c (c_common_nodes_and_builtins): Add strchr and strrchr builtins. * builtins.def (BUILT_IN_STRRCHR): Add. * gcc.c-torture/execute/string-opt-1.c: Add test for strstr with both arguments constant strings. * gcc.c-torture/execute/string-opt-3.c: New test. * gcc.c-torture/execute/string-opt-4.c: New test. * gcc.c-torture/execute/string-opt-5.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37338 138bc75d-0d04-0410-961f-82ee72b054a4
* * Remove overlooked conflict marker.gerald2000-11-091-1/+0
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37337 138bc75d-0d04-0410-961f-82ee72b054a4
* * fixinc/gnu-regex.c: Rename EGCS LOCAL markers to GCC LOCAL.gerald2000-11-092-4/+9
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37336 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.law2000-11-095-5/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37335 138bc75d-0d04-0410-961f-82ee72b054a4
* * calls.c (expand_call, emit_library_call_value_1), collect2.cjsm282000-11-0918-220/+155
| | | | | | | | | | | | | | | | | | | | | | | | | | | (scan_prog_file), config/a29k/a29k.c (print_operand), config/sparc/sparc.c (order_regs_for_local_alloc): Use memcpy () instead of bcopy (). * real.h: Use memcmp () instead of bcmp (). * config/m88k/m88k.c (m88k_layout_frame), config/sh/sh.c (split_branches), config/sparc/sparc.c (ultra_flush_pipeline, ultrasparc_sched_init, ultrasparc_sched_reorder), config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Use memset () instead of bzero (). * config/vax/xm-xms.h (FILE_NAME_NONDIRECTORY): Use strrchr () instead of rindex (). * configure.in: Don't check for bzero, bcmp, index or rindex. * configure, config.in: Regenerate. * system.h: Don't include declarations for bzero, bcmp, index or rindex. * config/i386/xm-beos.h, config/rs6000/xm-beos.h: Don't define bzero, bcmp, index or rindex. java: * parse.y (create_new_parser_context): Use memset () instead of bzero (). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37334 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/i386/cygwin.h: Add -no-win32 switch. Separate -mno-cygwin include andcgf2000-11-092-29/+66
| | | | | | | | library paths from -mcygwin case. Parameterize some declarations to avoid warnings. Use standard locations for include and lib dirs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37333 138bc75d-0d04-0410-961f-82ee72b054a4
* * include/bits/codecvt.h (codecvt::do_out): Make it const-correct.mmitchel2000-11-092-6/+11
| | | | | | | (codecvt::do_in): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37332 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix {u}mulsidi3adddi patterns in arm.md and add testcase to check that thenickc2000-11-094-29/+83
| | | | | | | fix stays in place. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37331 138bc75d-0d04-0410-961f-82ee72b054a4
* * flow.c (init_propagate_block_info): Protect the rtx stored inrth2000-11-092-2/+30
| | | | | | | | mem_set_list from modification by find_auto_inc. (mark_set_1): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37330 138bc75d-0d04-0410-961f-82ee72b054a4
* Move directive handling into the lexer itself.neil2000-11-084-31/+50
| | | | | | | | | | | | | * cpplex.c (_cpp_lex_token): Handle directives directly. In the case of a directive interrupting a function-like macro invocation, use extra_char since read_ahead is used to store the '#'. Return a CPP_EOF in this case. * cppmacro.c (parse_arg): No need to handle CPP_DHASH any more. (cpp_get_token): Don't handle directives here. * cpplib.h: Remove CPP_DHASH token type. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37329 138bc75d-0d04-0410-961f-82ee72b054a4
* * snapshot: New file.gerald2000-11-082-0/+179
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37328 138bc75d-0d04-0410-961f-82ee72b054a4
* * README: Fix typo. Remove incorrect reference to Cygnus.gerald2000-11-082-1/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37327 138bc75d-0d04-0410-961f-82ee72b054a4
* * regmove.c (combine_stack_adjustments_for_blocks): Recognize pusheshubicka2000-11-082-3/+15
| | | | | | | formed using PRE_MODIFY too. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37326 138bc75d-0d04-0410-961f-82ee72b054a4
* * gjavah.c (process_file): Only include gcj/cni.h when generatingtromey2000-11-082-1/+7
| | | | | | | CNI stubs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37325 138bc75d-0d04-0410-961f-82ee72b054a4
* * src/locale-inst.cc: Add explicit instantiations ofdje2000-11-082-5/+16
| | | | | | | _M_fill_insert and fill_n<..., unsigned long,...> . git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37324 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-11-08 Jeffrey Oldham <oldham@oz.codesourcery.com>oldham2000-11-082-15/+41
| | | | | | | | | | * gcc_build (bootstrap_gcc): New function. (configure_gcc): Likewise. (build_gcc): Rewritten to use configure and bootstrap. (MAKE_BOOTSTRAP_OPTIONS): Replaced MAKE_OPTIONS. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37323 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-tree.texi (VAR_DECL): Describe representation of GCC'smmitchel2000-11-082-0/+10
| | | | | | | extension for placing variables in particular registers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37322 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-tree.texi (FUNCTION_TYPE): Clarify TYPE_ARG_TYPES formmitchel2000-11-082-0/+9
| | | | | | | unprototyped C functions with no parameters. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37321 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/sparc/sparc.h (ASM_OUTPUT_MI_THUNK): Cast DELTA to intjakub2000-11-082-2/+7
| | | | | | | before passing to fprintf. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37320 138bc75d-0d04-0410-961f-82ee72b054a4
* cp/ChangeLognathan2000-11-085-85/+87
| | | | | | | | | | | | | * decl.c (grok_op_properties): Always use coerce_new_type and coerce_delete_type. * decl2.c (coerce_new_type): Use c_size_type_node. Preserve exception specification. Tidy up. (coerce_delete_type): Preserve exception specification. Tidy up. testsuite/ChangeLog * g++.old-deja/g++.other/crash36.C: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37319 138bc75d-0d04-0410-961f-82ee72b054a4
* * g++.old-deja/g++.other/init16.C: New test.jakub2000-11-082-0/+15
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37318 138bc75d-0d04-0410-961f-82ee72b054a4
* * function.c (expand_function_start): Cast GET_MODE_SIZE tojakub2000-11-082-1/+7
| | | | | | | HOST_WIDE_INT before negating it. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37317 138bc75d-0d04-0410-961f-82ee72b054a4
* * expr.c (expand_expr) [ADDR_EXPR]: Handle when op0 is RETURN_DECLjakub2000-11-082-2/+15
| | | | | | | passed in multiple non-contiguous locations. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37316 138bc75d-0d04-0410-961f-82ee72b054a4
* * README.gnat: Remove file.gerald2000-11-082-435/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37315 138bc75d-0d04-0410-961f-82ee72b054a4
* * g++.old-deja/g++.mike/p6610a.C: Update XFAIL.gerald2000-11-082-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37314 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.law2000-11-085-5/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37313 138bc75d-0d04-0410-961f-82ee72b054a4
* * mklibgcc.in (EXTRA_MULTILIB_PARTS): Generate multilib partsaoliva2000-11-082-9/+11
| | | | | | | in-place. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37312 138bc75d-0d04-0410-961f-82ee72b054a4
* * include/bits/std_complex.h (conj): Undo double removal.gdr2000-11-082-0/+9
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37311 138bc75d-0d04-0410-961f-82ee72b054a4
* * dwarfout.c (INSN_LABEL_FMT): Remove.rth2000-11-086-76/+14
| | | | | | | | | | | | | | (output_label_die): Use ASM_GENERATE_INTERNAL_LABEL. (dwarfout_label): Remove. * dwarfout.h: Remove it's prototype. * dwarf2out.c (INSN_LABEL_FMT): Remove. (gen_label_die): Use ASM_GENERATE_INTERNAL_LABEL. (dwarf2out_label): Remove. * dwarf2out.h: Remove it's prototype. * final.c (final_scan_insn): Don't call dwarf[2]out_label. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37310 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/ia64/fde-glibc.c (find_fde_for_dso): Do a binaryrth2000-11-083-19/+39
| | | | | | | | | | | | search on the unwind region section. * config/ia64/ia64.md (movbi): Add r/r alternative. (cmovdi_internal_astep): Describe all combinations of register classes for sources & destinations; remove matching constraints. (cmovdi_internal): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37309 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.c (default_compilers) [@cpp-output]: Add -fpreprocessed.rth2000-11-082-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37308 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-lang.c (start_cdtor, finish_cdtor): New functions.rth2000-11-085-49/+76
| | | | | | | | | | | | (finish_file): Use them in building constructor/destructor functions. * config/alpha/alpha.h (HAS_INIT_SECTION, LD_INIT_SWITCH, LD_FINI_SWITCH): Move ... * config/alpha/osf.h: ... here. * config/alpha/alpha-interix.h: Don't undef them. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37307 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-11-07 Jeffrey Oldham <oldham@oz.codesourcery.com>oldham2000-11-082-0/+23
| | | | | | | | | | | * config/mips/t-iris6 (FPBIT): New. Added so that __unorddf2 is included in libgcc.a. (DPBIT): Likewise. (dp-bit.c): Likewise. (fp-bit.c): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37306 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-11-07 Jeffrey Oldham <oldham@oz.codesourcery.com>oldham2000-11-074-6/+12
| | | | | | | | | * gcc.c-torture/execute/va-arg-15.x: Changed to mips*-sgi-irix6.*. * gcc.c-torture/execute/va-arg-16.x: Likewise. * gcc.c-torture/execute/va-arg-17.x: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37305 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/m88k/m88k.h (GLOBAL_ASM_OP): Add missing tab.hp2000-11-072-2/+7
| | | | | | | (INTERNAL_ASM_OP): Add missing tab. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37304 138bc75d-0d04-0410-961f-82ee72b054a4
* * alias.c (init_alias_analysis), calls.c (expand_call,jsm282000-11-0745-121/+167
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | emit_library_call_value_1), combine.c (init_reg_last_arrays), cse.c (new_basic_block), dbxout.c (dbxout_type), diagnostic.c (init_output_buffer, set_diagnostic_context), dwarf2out.c (equate_decl_number_to_die, build_abbrev_table), emit-rtl.c (init_emit_once), fold-const.c (mul_double, div_and_round_double), function.c (assign_parms), gcse.c (compute_can_copy, alloc_gcse_mem, alloc_reg_set_mem, record_one_set, compute_hash_table, compute_set_hash_table, compute_expr_hash_table), genattrtab.c (optimize_attrs), global.c (global_alloc, global_conflicts), haifa-sched.c (compute_trg_info, clear_units, schedule_block), integrate.c (initialize_for_inline, expand_inline_function), jump.c (thread_jumps), local-alloc.c (local_alloc), loop.c (combine_movables, count_loop_regs_set, load_mems_and_recount_loop_regs_set), print-tree.c (debug_tree), regclass.c (init_reg_sets, init_reg_sets_1, regclass, record_reg_classes, allocate_reg_info), reload.c (get_secondary_mem, remove_address_replacements, find_reloads), reload1.c (reload, set_initial_label_offsets, finish_spills, reload_as_needed, choose_reload_regs_init, reload_cse_simplify_operands), reorg.c (dbr_schedule), sbitmap.c (sbitmap_zero), simplify-rtx.c (simplify_plus_minus), ssa.c (rename_registers), stmt.c (expand_end_case), unroll.c (unroll_loop), varray.c (varray_grow), objc/objc-act.c: Use memset () instead of bzero (). ch: * actions.c (check_missing_cases), typeck.c (build_chill_slice, build_chill_cast): Use memset () instead of bzero (). cp: * class.c (duplicate_tag_error, build_vtbl_initializer), decl.c (push_binding_level), error.c (cp_tree_printer), pt.c (process_partial_specialization, tsubst_template_arg_vector), search.c (lookup_member): Use memset () instead of bzero (). java: * expr.c (note_instructions), jcf-io.c (find_class), jcf-parse.c (init_outgoing_cpool), lex.c (java_init_lex): Use memset () instead of bzero (). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37303 138bc75d-0d04-0410-961f-82ee72b054a4
* oops, wrong ChangeLogdj2000-11-072-4/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37302 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcc.c-torture/execute/string-opt-1.c: New test.ghazi2000-11-072-0/+42
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37301 138bc75d-0d04-0410-961f-82ee72b054a4
* 2000-11-07 Jeffrey Oldham <oldham@oz.codesourcery.com>oldham2000-11-074-0/+32
| | | | | | | | | | | | | | * gcc.c-torture/execute/va-arg-15.x: New file. Fails on mips-sgi-irix6.* because the MIPS ABI passes floating-point parameters in registers, and there is no way for a varargs function to know in which order the integer and floating-point parameters should be interleaved when they are placed on the stack. * gcc.c-torture/execute/va-arg-16.x: Likewise. * gcc.c-torture/execute/va-arg-17.x: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37300 138bc75d-0d04-0410-961f-82ee72b054a4
* * cp/lang-specs.h: Fix -save-temps specs under USE_CPPLIB.neil2000-11-072-2/+7
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37299 138bc75d-0d04-0410-961f-82ee72b054a4
* * libjava.compile/sjis_comment3.java: Removed.tromey2000-11-077-30/+9
| | | | | | | | | | | * libjava.compile/sjis_comment2.java: Removed. * libjava.compile/sjis_comment1.java: Removed. * libjava.compile/euc_comment3.java: Removed. * libjava.compile/euc_comment2.java: Removed. * libjava.compile/euc_comment1.java: Removed. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37298 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-common.c (combine_strings): Only warn about long strings for C.ghazi2000-11-072-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37297 138bc75d-0d04-0410-961f-82ee72b054a4
* * combine.c (distribute_notes): Fix typo in last change.amylaar2000-11-072-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37296 138bc75d-0d04-0410-961f-82ee72b054a4