summaryrefslogtreecommitdiff
path: root/gcc
Commit message (Collapse)AuthorAgeFilesLines
* * decl2.c (import_export_decl): Don't call import_export_classmmitchel2001-04-033-14/+28
| | | | | | | | | when processing an inline member function. * semantics.c (expand_body): Call import_export_decl before emitting inline functions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41066 138bc75d-0d04-0410-961f-82ee72b054a4
* * i386.c (ix86_force_to_memory, ix86_free_from_memory):hubicka2001-04-032-40/+86
| | | | | | | Update for 64bit. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41062 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/i386/xm-beos.h, config/i386/xm-isc.h,zack2001-04-0313-137/+17
| | | | | | | | | | | | | | | | config/i386/xm-next.h, config/i386/xm-sco.h, config/i386/xm-sco5.h, config/m68k/xm-plexus.h, config/m88k/xm-m88k.h: Delete. * config/i386/xm-djgpp.h: Don't define __MSDOS__. * config/romp/xm-romp.h: Don't define bcopy. * config/rs6000/xm-beos.h: Don't define bcopy, HAVE_VPRINTF, HAVE_PUTENV, HAVE_RENAME, or USE_C_ALLOCA. * config.gcc: Remove references to deleted files. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41061 138bc75d-0d04-0410-961f-82ee72b054a4
* 2001-03-28 Hans Boehm <boehm@acm.org>apbianco2001-04-032-7/+14
| | | | | | | | | | | * boehm.c (PROCEDURE_OBJECT_DESCRIPTOR): Set to use `build_int_2.' (get_boehm_type_descriptor): Set type on returned value to be a pointer length integer. (http://gcc.gnu.org/ml/java/2001-03/msg00444.html) git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41059 138bc75d-0d04-0410-961f-82ee72b054a4
* 2001-04-03 Jakub Jelinek <jakub@redhat.com>amacleod2001-04-0364-872/+1639
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | David S. Miller <davem@pierdol.cobaltmicro.com> Andrew MacLeod <amacleod@redhat.com> Use byte offsets in SUBREGs instead of words. * alias.c (nonlocal_mentioned_p): Use subreg_regno function. * caller-save.c (mark_set_regs): Change callers of subreg_hard_regno to pass new argument. (add_stored_regs): Use subreg_regno_offset function. * calls.c (expand_call): For non-paradoxical SUBREG take endianess into account. (precompute_arguments): Use gen_lowpart_SUBREG. * combine.c (try_combine): Replace explicit XEXP with SUBREG_REG. (combine_simplify_rtx): Rework to use SUBREG_BYTE. (simplify_set): Rework to use SUBREG_BYTE. (expand_field_assignment): Use SUBREG_BYTE. (make_extraction): Use SUBREG_BYTE. (if_then_else_cond): Use SUBREG_BYTE. (apply_distributive_law): Use SUBREG_BYTE and fixup subreg comments. (gen_lowpart_for_combine): Compute full byte offset. * cse.c (mention_regs): Use SUBREG_BYTE. (remove_invalid_subreg_refs): Rework to use SUBREG_BYTE. (canon_hash): Use SUBREG_BYTE. (fold_rtx): Pass SUBREG_BYTE div UNITS_PER_WORD to operand_subword. (gen_lowpart_if_possible): Formatting. * dbxout.c (dbxout_symbol_location): Compute SUBREG hard regnos correctly. * dwarf2out.c (is_pseudo_reg): Fixup explicit XEXP into SUBREG_REG (mem_loc_descriptor): Fixup explicit XEXP into SUBREG_REG (loc_descriptor): Fixup explicit XEXP into SUBREG_REG * dwarfout.c (is_pseudo_reg): Fixup explicit XEXP into SUBREG_REG (output_mem_loc_descriptor): Fixup explicit XEXP into SUBREG_REG (output_loc_descriptor): Fixup explicit XEXP into SUBREG_REG * emit-rtl.c (gen_rtx_SUBREG): New function, used to verify certain invariants about SUBREGs the compiler creates. (gen_lowpart_SUBREG): New function. (subreg_hard_regno): New function to get the final register number. (gen_lowpart_common): Use SUBREG_BYTE. (gen_imagpart): Spacing nits. (subreg_realpart_p): Use SUBREG_BYTE. (gen_highpart): Use SUBREG_BYTE. (subreg_lowpart_p): Always compute endian corrected goal offset, even at the byte level, then compare against that. (constant_subword): New function, pulled out all constant cases from operand_subword and changed second argument name to offset. (operand_subword): Detect non REG/SUBREG/CONCAT/MEM cases early and call constant_subword to do the work. Return const0_rtx if looking for a word outside of OP. (operand_subword_force): Change second arg name to offset. * expmed.c (store_bit_field): Use SUBREG_BYTE. (store_split_bit_field): Use SUBREG_BYTE. (extract_bit_field): Use SUBREG_BYTE. (extract_split_bit_field): Use SUBREG_BYTE. (expand_shift): Use SUBREG_BYTE. * expr.c (store_expr, expand_expr): Use gen_lowpart_SUBREG. * final.c (alter_subreg) Use subreg_hard_regno and SUBREG_BYTE. * flow.c (set_noop_p): Use SUBREG_BYTE. (mark_set_1): Remove ALTER_HARD_SUBREG. Use subreg_regno_offset instead. * function.c (fixup_var_refs_1): Fixup explicit XEXP into a SUBREG_REG. (fixup_memory_subreg): Use SUBREG_BYTE and remove byte endian correction code. (optimize_bit_field): Use SUBREG_BYTE. (purge_addressof_1): Use SUBREG_BYTE. (purge_single_hard_subreg_set): Use subreg_regno_offset function. (assign_params): Mark arguments SUBREG_PROMOTED_VAR_P if they are actually promoted by the caller and PROMOTE_FOR_CALLS_ONLY is true. * gengenrtl.c (special_rtx): Add SUBREG. * global.c (mark_reg_store): Use SUBREG_BYTE. (set_preference): Rework to use subreg_regno_offset and SUBREG_BYTE. * ifcvt (noce_emit_move_insn): Use SUBREG_BYTE. * integrate.c (copy_rtx_and_substitute): Use SUBREG_BYTE and make sure final byte offset is congruent to subreg's mode size. (subst_constants): Use SUBREG_BYTE. (mark_stores): Use subreg_regno_offset function. * jump.c (rtx_renumbered_equal_p, true_regnum): Use subreg_regno_offset function and SUBREG_BYTE. * local-alloc.c (combine_regs): Use subreg_regno_offset function. (reg_is_born): Use subreg_hard_regno. * recog.c (valid_replace_rtx_1): Use SUBREG_BYTE and remove byte endian correction code. Don't combine subregs unless resulting offset aligns with type. Fix subreg constant extraction for DImode. Simplify SUBREG of VOIDmode CONST_DOUBLE. (general_operand): Remove dead mode_altering_drug code. (indirect_operand): Use SUBREG_BYTE. (constrain_operands): Use subreg_regno_offset function. * reg-stack.c (get_true_reg): Use subreg_regno_offset function. * regmove.c (regmove_optimize): Use SUBREG_BYTE. (optimize_reg_copy_3): Use gen_lowpart_SUBREG. * regs.h (REG_SIZE): Allow target to override. (REGMODE_NATURAL_SIZE): New macro which target can override. * reload.c (reload_inner_reg_of_subreg): subreg_regno should be used on the entire subreg rtx. (push_reload): Use SUBREG_BYTE in comments and code. (find_dummy_reload): Use subreg_regno_offset. Only adjust offsets for hard registers inside subregs. (operands_match_p): Use subreg_regno_offset. (find_reloads): Use SUBREG_BYTE and only advance offset for subregs containing hard regs. (find_reload_toplev): Use SUBREG_BYTE. Remove byte endian corrections when fixing up MEM subregs. (find_reloads_address_1): Use SUBREG_BYTE, subreg_regno, and subreg_regno_offset where appropriate. (find_reloads_subreg_address): Use SUBREG_BYTE. Remove byte endian corrections when fixing up MEM subregs. (subst_reloads): When combining two subregs, make sure final offset is congruent to subreg's mode size. (find_replacement): Use SUBREG_BYTE and subreg_regno_offset. (refers_to_regno_for_reload_p): Use subreg_regno. (reg_overlap_mentioned_for_reload_p): Use subreg_regno_offset. * reload1.c (eliminate_regs) Use SUBREG_BYTE. Remove byte endian correction code for memory subreg fixups. (forget_old_reload_1): Use subreg_regno_offset. (choose_reload_regs): Use subreg_regno. (emit_input_reload_insns): Use SUBREG_BYTE. (reload_combine_note_store): Use subreg_regno_offset. (move2add_note_store): Use subreg_regno_offset. * resource.c (update_live_status, mark_referenced_resources): Use subreg_regno function. (mark_set_resources): Use subreg_regno function. * rtl.h (SUBREG_WORD): Rename to SUBREG_BYTE. (subreg_regno_offset, subreg_regno): Define prototypes. (subreg_hard_regno, constant_subword, gen_rtx_SUBREG): Newi functions. (gen_lowpart_SUBREG): Add prototype. * rtl.texi (subreg): Update to reflect new byte offset representation. Add mentioning of the effect that BYTES_BIG_ENDIAN has on subregs now. * rtlanal.c (refers_to_regno_p): Use subreg_regno. (reg_overlap_mentioned_p): Use subreg_regno. (replace_regs); Make sure final offset of combined subreg is congruent to size of subreg's mode. (subreg_regno_offset): New function. (subreg_regno): New function. * sched-vis.c (print_value): Change SUBREG_WORD to SUBREG_BYTE. * sdbout.c (sdbout_symbol): Compute offset using alter_subreg. * stmt.c (expand_anon_union_decl): Use gen_lowpart_SUBREG. * tm.texi (ALTER_HARD_SUBREG): Remove, it is now dead. (SUBREG_REGNO_OFFSET): Describe SUBREG_REGNO_OFFSET overrides. * config/a29k/a29k.c (gpc_reg_operand): Use subreg_regno. (a29k_get_reloaded_address): Use SUBREG_BYTE. (print_operand): Use SUBREG_BYTE. * config/alpha/alpha.c (print_operand_address): Use SUBREG_BYTE. * config/arm/arm.c (arm_reload_in_hi): Use SUBREG_BYTE. (arm_reload_out_hi): Use SUBREG_BYTE. * config/d30v/d30v.c (d30v_split_double): Use subreg_regno_offset instead of SUBREG_WORD. (d30v_print_operand_memory_reference): Use subreg_regno_offset. * config/dsp16xx/dsp16xx.md (extendqihi2, zero_extendqihi2): Fix SUBREG creation to use byte offset. * config/h8300/h8300.md (Unnamed HImode zero extraction and 16bit inverted load insns): Fix explicit rtl subregs to use byte offsets. * config/i370/i370.md (cmpstrsi, movstrsi, mulsi3, divsi3, udivsi3, umodsi3): Generate SUBREGs with byte offsets. * config/i860/i860.c (single_insn_src_p): Use SUBREG_BYTE. * config/i860/i860.md (mulsi3_big): Fixup explicit SUBREGs in rtl to use byte offsets. (unnamed fmlow.dd insn): Fixup SUBREGS to use byte offsets. * config/i960/i960.md (extendhisi2): Generate SUBREGs with byte offsets, also make sure it is congruent to SUBREG's mode size. (extendqisi2, extendqihi2, zero_extendhisi2, zero_extendqisi2, unnamed ldob insn): Generate SUBREGs with byte offset. (zero_extendqihi2): SUBREG's are byte offsets. * config/m68hc11/m68hc11.c (m68hc11_gen_lowpart): Use SUBREG_BYTE. (m68hc11_gen_highpart): Use SUBREG_BYTE. * config/m68k/m68k.md (zero_extendhisi2, zero_extendqihi2, zero-extendqisi2): Generate SUBREGs with byte offset. (umulsidi3, mulsidi3, subreghi1ashrdi_const32, subregsi1ashrdi_const32, subreg1lshrdi_const32): Fixup explicit subregs in rtl to use byte offsets. * config/m88k/m88k.md (extendsidi2): fixup subregs to use byte offset. * config/mips/mips.c (mips_move_1word): Use subreg_regno_offset. (mips_move_2words): Use subreg_regno_offset. (mips_secondary_reload_class): Use subreg_regno_offset. * config/mips/mips.md (DImode plus, minus, move, and logical op splits): Fixup explicit subregs in rtl to use byte offsets. * config/mn10200/mn10200.c (print_operand): Use subreg_regno function. * config/mn10300/mn10300.c (print_operand): Use subreg_regno function. * config/ns32k/ns32k.md (udivmoddisi4): Fix explicit subregs in rtl to use byte offsets. * config/pa/pa.c (emit_move_sequence): Use SUBREG_BYTE. * config/pa/pa.md (floatunssisf2, floatunssidf2, mulsi3): fix explicit subregs to use byte offsets. * config/pdp11/pdp11.md (zero_extendhisi2, modhi3, modhi3+1): Fixup explicit subregs in rtl to use byte offsets. * config/romp/romp.c (memory_offset_in_range_p): Use SUBREG_BYTE and remove byte endian correction code. * config/sh/sh.c (output_movedouble): Use subreg_regno. (gen_ashift_hi): Use SUBREG_BYTE. (regs_used): Use subreg_regno_offset. (machine_dependent_reorg): Use subreg_regno_offset. * config/sh/sh.h (INDEX_REGISTER_RTX_P): Use SUBREG_BYTE. * config/sh/sh.md (DImode and DFmode move splits): Use subreg_regno. (movdf_i4): Subregs are byte offsets now. * config/sparc/sparc.c (ultra_find_type): Use SUBREG_BYTE. * config/sparc/sparc.h (ALTER_HARD_SUBREG): Removed. (REGMODE_NATURAL_SIZE): Override. (REG_SIZE): For SUBREG check float mode on SUBREG_REG's mode. * config/sparc/sparc.md (TFmode move splits): Generate SUBREGs with byte offsets. (zero_extendhisi2, zero_extendqidi2_insn, extendhisi2, extendqihi2, sign_extendqihi2_insn, sign_extendqisi2_insn, extendqidi2): Generate SUBREGs with byte offsets, also make sure it is congruent to SUBREG's mode size. (smulsi3_highpart_v8plus): Fix explicit subregs in rtl to use byte offsets. (cmp_siqi_trunc, cmp_siqi_trunc_set, cmp_diqi_trunc, cmp_diqi_trunc_set, lshrdi3_v8plus+1, lshrdi3_v8plus+2, lshrdi3_v8plus+3, lshrdi3_v8plus+4): Use proper SUBREG_BYTE offset for non-paradoxical subregs in patterns. * config/v850/v850.c (print_operand, output_move_double): Use subreg_regno function. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41058 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.in (target_subdir): Use target_alias, not target.aoliva2001-04-033-267/+281
| | | | | | | * configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41051 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/sh/crtn.asm (init, fini): Restore r15 from r14, not theaoliva2001-04-033-6/+12
| | | | | | | | other way round. * config/sh/crti.asm: Fix typos in comments. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41047 138bc75d-0d04-0410-961f-82ee72b054a4
* * g++.old-deja/g++.ext/instantiate1.C: Adjust to accommodateaoliva2001-04-033-11/+33
| | | | | | | | peculiarities of the SH. * g++.old-deja/g++.ext/instantiate2.C: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41045 138bc75d-0d04-0410-961f-82ee72b054a4
* Move ChangeLog entry where it belongs.jakub2001-04-032-5/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41043 138bc75d-0d04-0410-961f-82ee72b054a4
* TARGET_NO_SPACE_REGS no longer affects call sequences.amodra2001-04-034-149/+135
| | | | | | | | | | | | | | | | | * pa.h: Revise comments for TARGET_NO_SPACE_REGS and TARGET_FAST_INDIRECT_CALLS. * pa.c (override_options): TARGET_NO_SPACE_REGS is now OK with -fPIC. Don't warn. (return_addr_rtx): Short circuit export stub matching when TARGET_NO_SPACE_REGS. (output_millicode_call): For out of range calls, make -fPIC take precedence, then TARGET_PORTABLE_RUNTIME, then ble. Don't return before delay slot checks when TARGET_PORTABLE_RUNTIME. * pa.md: Modify length attr calculation of all millicode insns to match above. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41042 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2001-04-032-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41041 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.in (gcc_cv_as_leb128): Correct name of cache variable.geoffk2001-04-033-14/+33
| | | | | | | | | Require at least 2.11 in the version test. Specifically check for and reject GAS version 2.10.90. * configure: regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41039 138bc75d-0d04-0410-961f-82ee72b054a4
* Rewrite hppa profiling support.amodra2001-04-034-112/+152
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * config/pa/pa.c (override_options): Remove PIC profiling warning. (hp_profile_labelno): Delete. (hp_profile_label_rtx): Delete. (hp_profile_label_name): Delete. (pa_add_gc_roots): Remove reference to hp_profile_label_rtx. (output_function_prologue): Remove profiling code and all tests on profile_flag. Move store of PIC_OFFSET_TABLE_REGNUM now that merge_sp_adjust_with_store can work for PIC and profiling. (hppa_expand_epilogue): Remove profile_flag test. (hppa_can_use_return_insn_p): Likewise. (hppa_init_pic_save): Emit before tail_recursion_reentry, and cater for PROFILE_HOOK. (hppa_profile_hook): New function. * config/pa/pa.h (FUNCTION_PROFILER): Now does nothing. (PROFILE_HOOK): Define. (hppa_profile_hook): Declare. (PROFILE_BEFORE_PROLOGUE): Delete. (ASM_OUTPUT_REG_PUSH): Delete. (ASM_OUTPUT_REG_POP): Delete. * config/pa/pa.md (call_profiler): Turn it into a call insn, and don't `use' r24. Accept function name operand, and use this and a locally generated label to calculate pc-rel offset to func start. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41038 138bc75d-0d04-0410-961f-82ee72b054a4
* * com.c (duplicate_decls): Fix thinko in lazy DECL_RTL patchmmitchel2001-04-032-1/+6
| | | | | | | of 2001-03-04. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41037 138bc75d-0d04-0410-961f-82ee72b054a4
* * $(HOST_PREFIX_1)errors.o, $(HOST_PREFIX_1)ggc-none.o,ghazi2001-04-032-7/+13
| | | | | | | | ggc-common.o, ggc-simple.o, ggc-page.o, ggc-none.o: Depend on $(SYSTEM_H). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41035 138bc75d-0d04-0410-961f-82ee72b054a4
* * dwarf2out.c (dwarf2out_frame_debug_expr): Move errant HIGH andamodra2001-04-032-14/+19
| | | | | | | LO_SUM cases to where they belong. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41033 138bc75d-0d04-0410-961f-82ee72b054a4
* * expr.c (pop_type_0): Save the result of the firstzack2001-04-032-3/+15
| | | | | | | | lang_printable_name call in a scratch buffer, so it won't be clobbered by the second call. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41032 138bc75d-0d04-0410-961f-82ee72b054a4
* * except.h (lang_eh_type_covers): Mark extern.rth2001-04-022-2/+7
| | | | | | | (lang_eh_runtime_type): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41024 138bc75d-0d04-0410-961f-82ee72b054a4
* 2001-04-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>rth2001-04-024-24/+30
| | | | | | | | | * gcc.c-torture/execute/ieee/fp-cmp-1.c: Renamed nan to dnan. * gcc.c-torture/execute/ieee/fp-cmp-3.c: Likewise. * gcc.c-torture/execute/ieee/fp-cmp-2.c: Renamed nan to fnan. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41022 138bc75d-0d04-0410-961f-82ee72b054a4
* * lex.c (ffelex_hash_): Avoid eating one whole line afterjakub2001-04-024-0/+23
| | | | | | | | | #line. * g77.f-torture/compile/20010321-1.f: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41015 138bc75d-0d04-0410-961f-82ee72b054a4
* * genattr.c, gencheck.c, gencodes.c, genconfig.c, genflags.c,zack2001-04-027-26/+63
| | | | | | | | gengenrtl.c: Wrap generated header in multiple-include guard. Improve error checking. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41006 138bc75d-0d04-0410-961f-82ee72b054a4
* * configure.in: Don't check for putenv.ghazi2001-04-025-57/+18
| | | | | | | | | * configure: Regenerate. * gcc.c (putenv): Don't define. * vax/xm-vms.h: Handle putenv. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41005 138bc75d-0d04-0410-961f-82ee72b054a4
* * ifcvt.c (noce_emit_move_insn): New.jakub2001-04-024-11/+72
| | | | | | | | | | | | | | (noce_try_store_flag, noce_try_store_flag_constants, noce_try_store_flag_inc, noce_try_store_flag_mask, noce_try_cmove, noce_try_cmove_arith, noce_try_minmax, noce_try_abs): Use it. (noce_process_if_block): Likewise. For STRICT_LOW_PART, take mode from its SUBREG. * gcc.c-torture/compile/20010329-1.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41001 138bc75d-0d04-0410-961f-82ee72b054a4
* * fold-const.c (fold): Before optimizing unsigned comparison withjakub2001-04-024-1/+26
| | | | | | | | | 0x7fffffffU, make sure arg0 is integral type. * gcc.c-torture/execute/20010329-1.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41000 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-tree.texi: Document representation of wide strings.jsm282001-04-022-1/+13
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40998 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2001-04-022-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40997 138bc75d-0d04-0410-961f-82ee72b054a4
* * except.h (expand_builtin_dwarf_fp_regnum): Declare.rth2001-04-022-0/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40995 138bc75d-0d04-0410-961f-82ee72b054a4
* * i386.md: remove obsoleted comments.hubicka2001-04-012-12/+18
| | | | | | | | | (adddi_?): Rename to adddi_?_rex64; disable for 32bit. (x86_movsicc_0_m1_rex64): Rename to x86_movdicc_0_m1_rex64; fix output template. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40982 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2001-04-012-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40980 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/avr/libgcc.S (__mulhi3): Optimize previous change.marekm2001-03-312-2/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40976 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2001-03-312-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40974 138bc75d-0d04-0410-961f-82ee72b054a4
* Prevent hoisting code from generating uninitialized accesses.bernds2001-03-302-3/+20
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40971 138bc75d-0d04-0410-961f-82ee72b054a4
* * i386.c (ix86_split_long_move): Use change address to compensatehubicka2001-03-302-2/+11
| | | | | | | stack pointer change in push instruction. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40968 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2001-03-302-2/+2
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40961 138bc75d-0d04-0410-961f-82ee72b054a4
* * i386.md (sse_movdfcc_eq): Fix constraint (sse_mov?fcc splitter): Use ↵hubicka2001-03-292-5/+10
| | | | | | | | | operands_match_p instead of rtx_equal_p; fix the output template. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40959 138bc75d-0d04-0410-961f-82ee72b054a4
* * i386.c (ix86_expand_setcc): Support 64bit.hubicka2001-03-293-12/+107
| | | | | | | | | | | | | | (ix86_expand_int_movcc): Likewise. * i386.md (movdicc_rex64, x86_movsicc_0_m1_rex64, movdicc_c_rex64): New patterns. * i386.md (allocate_stack_worker): Turn to expander. (allocate_stack_worker_1, allocate_stack_worker_rex64): New insns. * i386.c (print_reg): Do not print x86_64 style regs on IA-32 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40958 138bc75d-0d04-0410-961f-82ee72b054a4
* * libgcc2.c [L__main]: Include unwind-dw2-fde.h instead of frame.h.rth2001-03-292-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40957 138bc75d-0d04-0410-961f-82ee72b054a4
* 2001-03-28 Matthew Hiller <hiller@redhat.com>hiller2001-03-292-4/+19
| | | | | | | | | | * config/mn10300/mn10300.md (cmpsi): Fix first alternative's output template. * MAINTAINERS: Added self. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40956 138bc75d-0d04-0410-961f-82ee72b054a4
* * Makefile.in (cs-tconfig.h): Depend on CONFIG_H, not GCONFIG_H.rth2001-03-282-2/+7
| | | | | | | Use ALL_CFLAGS not HOST_CFLAGS for sjlj detection. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40952 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix abort when passing 1.0L as unnamed argument.wilson2001-03-282-2/+7
| | | | | | | | * config/ia64/ia64.md (movtf): Change DImode to TFmode in calls to operand_subword. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40951 138bc75d-0d04-0410-961f-82ee72b054a4
* * g++.old-deja/g++.other/eh4.C: Fix typo.ljrittle2001-03-282-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40946 138bc75d-0d04-0410-961f-82ee72b054a4
* * g++.dg/special/ecos.exp (conpr-1.C): Do not write in $srcdir.ljrittle2001-03-282-3/+7
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40943 138bc75d-0d04-0410-961f-82ee72b054a4
* * expr.c (pop_type_0): Call `concat' rather than building theghazi2001-03-283-25/+24
| | | | | | | | | | | string manually. (pop_type): Add format specifier in call to `error'. * parse.y (patch_method_invocation): Avoid casting away const-ness. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40940 138bc75d-0d04-0410-961f-82ee72b054a4
* * toplev.h (fatal_error): Add ATTRIBUTE_NORETURN.ghazi2001-03-284-3/+13
| | | | | | | | | | * tradcif.y (yyerror): Likewise. Add format specifier in call to `error'. * tradcpp.c (macroexpand): Likewise for call to `error_with_line'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40939 138bc75d-0d04-0410-961f-82ee72b054a4
* 2001-03-21 Alexandre Petit-Bianco <apbianco@redhat.com>apbianco2001-03-282-2/+9
| | | | | | | | | | | * parse.y (qualify_ambiguous_name): Broaden `length' recognition. Help MODIFY_EXPR be resolved as expression names. Fixes PR java/2066. Fixes PR java/2400. (http://gcc.gnu.org/ml/gcc-patches/2001-03/msg01935.html) git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40938 138bc75d-0d04-0410-961f-82ee72b054a4
* 2001-03-28 Jeffrey Oldham <oldham@codesourcery.com>oldham2001-03-282-0/+5
| | | | | | | * jvgenmain.c (do_mangle_classname): End string constant with '\0'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40936 138bc75d-0d04-0410-961f-82ee72b054a4
* Revert cflags patch.dj2001-03-282-2/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40935 138bc75d-0d04-0410-961f-82ee72b054a4
* 2001-03-28 Philip Blundell <philb@gnu.org>pb2001-03-282-0/+84
| | | | | | | * gcc.c-torture/compile/20010328-1.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40934 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/avr/libgcc.S (__mulhi3): Correct tests to exit the loopmarekm2001-03-282-1/+8
| | | | | | | when multiplier or multiplicand is zero. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40933 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix missing barrier problembernds2001-03-282-95/+175
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40932 138bc75d-0d04-0410-961f-82ee72b054a4