gcc.git
24 years ago* Clean up usages of TREE_INT_CST_LOW.
Richard Kenner [Fri, 17 Mar 2000 17:31:58 +0000 (17:31 +0000)]
* Clean up usages of TREE_INT_CST_LOW.

* c-parse.in (RESTORE_WARN_FLAGS): Use tree_low_cst.
* c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
Regenerated.
* c-tree.h (min_precision): Move declaration to here.
* c-typeck.c (build_binary_op): Use host_integerp and tree_low_cst.
(build_unary_op, add_pending_init): Use bit_position.
(pending_init_member, process_init_element): Likewise.
(really_start_incremental_init, push_init_level, pop_init_level):
Don't make copies of nodes or modify them in place, use consistent
types when tracking positions, and use tree routines computations.
(set_init_index, output_init_element): Likewise.
(output_pending_init_elements, process_init_element): Likewise.
* dbxout.c (dbxout_type_fields): Use bit_position, host_integerp,
tree_low_cst and int_bit_position; also minor cleanup.
(dbxout_type_method_1, dbxout_range_type, dbxout_type): Likewise.
(print_cst_octal): Precision is unsigned.
(dbxout_symbol): Ensure DECL_INITIAL is in-range and use tree_low_cst.
* dwarf2out.c (ceiling): Input and output are unsigned HOST_WIDE_INT.
(simple_type_align_in_bits): Result is unsigned int.
Use tree_int_low_cst and host_integerp.
(simple_type_size_in_bits): Result is unsigned HOST_WIDE_INT.
(field_byte_offset): Result is HOST_WIDE_INT.
Change types of internal variables so alignments are unsigned int,
offsets are HOST_WIDE_INT and sizes are unsigned HOST_WIDE_INT.
Use host_integerp, tree_low_cst, and int_bit_position.
(add_bit_offset_attribute): Likewise.
(add_data_member_location_attribute): Use tree_cst_low.
(add_bound_info): Use host_integerp, integer_zerop, and integer_onep.
(add_bit_size_attribute): Use tree_low_cst.
(add_pure_or_virtual_attribute, gen_enumeration_type_die): Likewise.
* dwarfout.c: Similar changes to dwarf2out.c.
* expr.c (expand_expr, case ARRAY_REF): Remove redundant code.
* genoutput.c (n_occurences): Return -1 for null string.
(strip_whitespace): Accept null string and make into function.
(scan_operands): Reflect above changes.
* sdbout.c (plain_type_1): Use host_integerp and tree_low_cst.
(sdbout_field_types, sdbout_one_type): Likewise; also use bit_position.
* ssa.c (rename_registers): Add missing cast of arg to bzero.
* tree.c (int_size_in_bytes): Check for too big to represent.
(bit_position, int_bit_position, host_integerp, tree_low_cst): New fns.
* tree.h (host_integerp, tree_low_cst, bit_position, int_bit_position):
New declarations.
(min_precision): Delete from here.
* varasm.c (decode_addr_const): Use host_integerp, bit_position,
and int_bit_position.
* objc/objc-act.c (encode_method_prototype): Sizes are HOST_WIDE_INT.
(encode_method_def): Likewise.
(build_ivar_list_initializer): Use int_bit_position.
(generate_shared_structures): Convert size.
(encode_type, encode_complete_bitfield): Use integer_zerop.
(encode_bitfield): Use tree_low_cst and int_bit_position.
* ch/typeck.c (min_precision): New function.
(build_chill_slice): Use host_integerp and tree_low_cst.
(expand_constant_to_buffer): Likewise and also int_bit_position.
LO is unsigned HOST_WIDE_INT
(build_chill_array_ref_1): Make `i' be HOST_WIDE_INT; use tree_low_cst.
(extract_constant_from_buffer): Sizes are now HOST_WIDE_INT.
Use host_integerp and tree_low_cst.
(build_chill_bin_type): Use host_integerp and tree_low_cst.
(layout_chill_range_type): Use tree_int_cst_sgn, compare_tree_int,
tree_low_cst, and min_precision.
(apply_chill_array_layout): Cleanups for types of variables
and use tree_int_cst_sgn, compare_tree_int, and tree_low_cst.
(apply_chill_field_layout): Likewise.
* cp/class.c (build_vbase_path): Use integer_zerop.
(build_vtable_entry): Use tree_low_cst.
(get_vfield_offset): Use bit_position.
(dfs_modify_vtables): New variable vindex_val; `i' is HOST_WIDE_INT.
Use tree_low_cst.
(check_bitfield_decl): Set DECL_SIZE using convert.
(build_base_field): Set DECL_SIZE and DECL_SIZE_UNIT using size_binop.
(layout_virtual_bases): DSIZE is unsigned HOST_WIDE_INT.
Use tree_low_cst.
(finish_struct_1): Use bit_position.
(dump_class_hierarchy): Use tree_low_cst.
* cp/cp-tree.h (min_precision): Add declaration.
* cp/decl.c (xref_tag, xref_basetypes): Use tree_low_cst.
* cp/error.c (dump_type_suffix): Use host_integerp and tree_low_cst.
(dump_expr): Use integer_zerop, host_integerp, and tree_low_cst.
* cp/expr.c (cplus_expand_constant): Use bit_position.
* cp/init.c (build_vec_init): Use host_integerp and tree_low_cst.
* cp/rtti.c (get_base_offset): Use bit_position.
* cp/typeck.c (build_binary_op): Use integer_zerop, compare_tree_int,
host_integerp, and tree_low_cst.
(pointer_int_sum): Use integer_zerop.
(build_component_addr): Use bit_position.
* java/class.c (make_field_value): Properly handle sizes.
(get_dispatch_vector): Use tree_low_cst and host_integerp.
(layout_class_method): Count using trees.
* java/decl.c (push_promoted_type): Set TYPE_{MIN,MAX}_VALUE with
copy_node.
* java/expr.c (java_array_data_offset): Use int_bit_position.
(build_newarray, build_anewarray): Use host_integerp and tree_low_cst.
(build_invokevirtual): Use tree_low_cst and do computations with trees.

From-SVN: r32607

24 years ago* config/c4x/c4x.h (CPP_SPEC): Fix typo.
Michael Hayes [Fri, 17 Mar 2000 10:23:16 +0000 (10:23 +0000)]
* config/c4x/c4x.h (CPP_SPEC): Fix typo.

From-SVN: r32606

24 years agotypeck.c (require_complete_type): Don't assume size_zero_node.
Nathan Sidwell [Fri, 17 Mar 2000 09:52:03 +0000 (09:52 +0000)]
typeck.c (require_complete_type): Don't assume size_zero_node.

* typeck.c (require_complete_type): Don't assume size_zero_node.
(complete_type_or_else): Likewise.

From-SVN: r32605

24 years agocall.c (special_function_p): It is only malloc if it returns Pmode.
Martin v. Löwis [Fri, 17 Mar 2000 09:11:17 +0000 (09:11 +0000)]
call.c (special_function_p): It is only malloc if it returns Pmode.

* call.c (special_function_p): It is only malloc if it returns
Pmode.

From-SVN: r32604

24 years agoDaily bump.
Jeff Law [Fri, 17 Mar 2000 08:45:07 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r32603

24 years agoc4x.h (ASM_SPEC, [...]): Support C33.
Michael Hayes [Fri, 17 Mar 2000 05:23:50 +0000 (05:23 +0000)]
c4x.h (ASM_SPEC, [...]): Support C33.

* config/c4x/c4x.h (ASM_SPEC, CPP_SPEC, LINK_SPEC): Support C33.
(C33_FLAG, TARGET_C3X): Add macros.
(TARGET_SWITCHES): Add -m33 option.
* config/c4x/c4x.c (c4x_override_options): Test for TARGET_C33.

From-SVN: r32602

24 years agoc4x.h (PARALLEL_INSN_FLAG): Add.
Michael Hayes [Fri, 17 Mar 2000 04:43:19 +0000 (04:43 +0000)]
c4x.h (PARALLEL_INSN_FLAG): Add.

* config/c4x/c4x.h (PARALLEL_INSN_FLAG): Add.
(PARALLEL_PACK_FLAG): Delete.
(TARGET_SWITCHES): Update.
(TARGET_PARALLEL): Use PARALLEL_INSN_FLAG.

From-SVN: r32601

24 years agotweak comment
Jason Merrill [Fri, 17 Mar 2000 00:56:18 +0000 (19:56 -0500)]
tweak comment

From-SVN: r32600

24 years agortti.c (build_dynamic_cast_1): Improve diagnostics.
Steven Grady [Fri, 17 Mar 2000 00:56:12 +0000 (00:56 +0000)]
rtti.c (build_dynamic_cast_1): Improve diagnostics.

        * rtti.c (build_dynamic_cast_1): Improve diagnostics.

Co-Authored-By: Jason Merrill <jason@casey.cygnus.com>
From-SVN: r32599

24 years agoColor.java: New file.
Warren Levy [Fri, 17 Mar 2000 00:45:06 +0000 (00:45 +0000)]
Color.java: New file.

* java/awt/Color.java: New file.
* java/awt/Graphics.java: New file.
* java/awt/Image.java: New file.
* java/awt/Paint.java: New file.
* java/awt/PaintContext.java: New file.
* java/awt/Transparency.java: New file.
* java/util/Collection.java: New file.
* java/util/Comparator.java: New file.
* java/util/Iterator.java: New file.
* java/util/List.java: New file.
* java/util/ListIterator.java: New file.
* Makefile.am: Added above new files.
* Makefile.in: Rebuilt.

* java/awt/Font.java (PLAIN): New field.
(BOLD): New field.
(ITALIC): New field.
(ROMAN_BASELINE): New field.
(CENTER_BASELINE): New field.
(HANGING_BASELINE): New field.
(name): New field.
(style): New field.
(size): New field.
(pointSize): New field.
(Font): Implemented constructor.
(isPlain): Implemented method.
(isBold): Implemented method.
(isItalic): Implemented method.
(getName): Implemented method.
(getStyle): Implemented method.
(getSize): Implemented method.
(getSize2D): Implemented method.
(decode): Stubbed.
* java/awt/Frame.java (getFont): Stubbed.
(postEvent): Stubbed.
(remove): Stubbed.
* java/awt/Menu.java (postEvent): Stubbed.
* java/awt/MenuBar.java (getFont): Stubbed.
(postEvent): Stubbed.
* java/awt/Toolkit.java (getImage): Added abstract method.

From-SVN: r32598

24 years agofold-const.c (fold): Fix a few cases when the returned result is not of the same...
Richard Kenner [Thu, 16 Mar 2000 23:45:28 +0000 (23:45 +0000)]
fold-const.c (fold): Fix a few cases when the returned result is not of the same type as the input.

* fold-const.c (fold): Fix a few cases when the returned result
is not of the same type as the input.

From-SVN: r32597

24 years agoFix compile time warning building cp/method.o
Nick Clifton [Thu, 16 Mar 2000 22:46:40 +0000 (22:46 +0000)]
Fix compile time warning building cp/method.o

From-SVN: r32595

24 years agolibgcc2.h: Move prototypes above macros with the same name.
Kaveh R. Ghazi [Thu, 16 Mar 2000 22:14:08 +0000 (22:14 +0000)]
libgcc2.h: Move prototypes above macros with the same name.

* libgcc2.h: Move prototypes above macros with the same name.
Wrap some function prototypes in the conditional which indicates
whether they are supported, i.e. "BITS_PER_UNIT == 8".

From-SVN: r32594

24 years agolang.c (flag_hash_synchronization): New global.
Tom Tromey [Thu, 16 Mar 2000 18:32:45 +0000 (18:32 +0000)]
lang.c (flag_hash_synchronization): New global.

* lang.c (flag_hash_synchronization): New global.
(lang_f_options): Added `hash-synchronization'.
* lang-options.h: Mention -fhash-synchronization.
* java-tree.h (flag_hash_synchronization): Declare.
* expr.c (java_lang_expand_expr): Only push `sync_info' value when
hash table synchronization is disabled.
* decl.c (init_decl_processing): Only push `sync_info' value when
hash table synchronization is disabled.
* class.c (make_class_data): Only push `sync_info' field when hash
table synchronization is disabled.  Removed dead code.

From-SVN: r32593

24 years ago* calls.c: Revert last two changes.
Richard Henderson [Thu, 16 Mar 2000 17:42:06 +0000 (09:42 -0800)]
* calls.c: Revert last two changes.

From-SVN: r32592

24 years ago* lang.c (lang_decode_option): Enable -Wunused when -Wall given.
Tom Tromey [Thu, 16 Mar 2000 17:26:46 +0000 (17:26 +0000)]
* lang.c (lang_decode_option): Enable -Wunused when -Wall given.

From-SVN: r32591

24 years agoIntroduce NO_DENORMALS in fp-bit.c
Bernd Schmidt [Thu, 16 Mar 2000 17:20:57 +0000 (17:20 +0000)]
Introduce NO_DENORMALS in fp-bit.c

From-SVN: r32590

24 years agoSome cselib bug fixes
Bernd Schmidt [Thu, 16 Mar 2000 17:13:49 +0000 (17:13 +0000)]
Some cselib bug fixes

From-SVN: r32589

24 years agoi386.md (all HI and QI mode non-move patterns): Conditionize by TARGET_[HQ]IMODE_MATH.
Jan Hubicka [Thu, 16 Mar 2000 16:08:35 +0000 (17:08 +0100)]
i386.md (all HI and QI mode non-move patterns): Conditionize by TARGET_[HQ]IMODE_MATH.

* i386.md (all HI and QI mode non-move patterns):  Conditionize
by TARGET_[HQ]IMODE_MATH.
* i386.h (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
x86_promote_qi_regs): Declare.
(TARGET_HIMODE_MATH, TARGET_QIMODE_MATH, TARGET_PROMOTE_HI_REGS,
TARGET_PROMOTE_QI_REGS): New macros.
(PROMOTE_MODE): New macro.
* i386.c (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
x86_promote_qi_regs): New global variables.

From-SVN: r32588

24 years agocalls.c (emit_library_call_value_1): Break out from ...; handle VOIDmode function...
Jan Hubicka [Thu, 16 Mar 2000 15:52:13 +0000 (16:52 +0100)]
calls.c (emit_library_call_value_1): Break out from ...; handle VOIDmode function calls too.

* calls.c (emit_library_call_value_1): Break out from ...; handle
VOIDmode function calls too.
(emit_library_call_value): ... here.
(emit_library_call): Implement by calling emit_library_call_value_1.

From-SVN: r32587

24 years agocalls.c (expand_call): Do sanity checking on arg_space_so_far.
Jan Hubicka [Thu, 16 Mar 2000 15:02:42 +0000 (16:02 +0100)]
calls.c (expand_call): Do sanity checking on arg_space_so_far.

* calls.c (expand_call): Do sanity checking on arg_space_so_far.
Update arg_space_so_far on stack adjustments.
(emit_library_call, emit_library_call_value): Likewise; take into
account arg_space_so_far and pending_stack_adjust when calculcating
the boundary.

From-SVN: r32586

24 years agoflow.c: Move all basic block reordering code into its own file.
Jason Eckhardt [Thu, 16 Mar 2000 14:56:55 +0000 (14:56 +0000)]
flow.c: Move all basic block reordering code into its own file.

* flow.c: Move all basic block reordering code into its own file.
(create_basic_block): Externalize.
* bb-reorder.c: New file. Copy all basic block reordering code from
flow.c to this file.
(reorder_basic_blocks): Fix fencepost error in for-loop.
(reorder_basic_blocks): Remove braces from single statement for-loops.
* basic-block.h: Add declaration for create_basic_block.
* Makefile.in: Add rules for bb-reorder.o.

From-SVN: r32585

24 years agocppinit.c (handle_option): Implement #unassert directive as -A- command line option.
Neil Booth [Thu, 16 Mar 2000 14:15:17 +0000 (14:15 +0000)]
cppinit.c (handle_option): Implement #unassert directive as -A- command line option.

2000-03-16  Neil Booth  <NeilB@earthling.net>

* cppinit.c (handle_option):  Implement #unassert directive
        as -A- command line option.
(print_help):  Update.
* cpptexi.c:  Update.

From-SVN: r32584

24 years ago* md.texi (Standard Names): Document `jump'.
Hans-Peter Nilsson [Thu, 16 Mar 2000 12:18:18 +0000 (12:18 +0000)]
* md.texi (Standard Names): Document `jump'.

From-SVN: r32583

24 years ago* decl2.c (grokfield): Bail out if type is error_mark_node.
Nathan Sidwell [Thu, 16 Mar 2000 10:13:28 +0000 (10:13 +0000)]
* decl2.c (grokfield): Bail out if type is error_mark_node.

From-SVN: r32582

24 years agoDaily bump.
Jeff Law [Thu, 16 Mar 2000 08:45:07 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r32581

24 years ago* Makefile.in (partition.o): Depend on config.h
Jeffrey A Law [Thu, 16 Mar 2000 08:37:47 +0000 (08:37 +0000)]
* Makefile.in (partition.o): Depend on config.h

From-SVN: r32580

24 years agocalls.c (emit_call_1): Nothrow functions can still have nonlocal gotos.
Jason Merrill [Thu, 16 Mar 2000 07:44:30 +0000 (07:44 +0000)]
calls.c (emit_call_1): Nothrow functions can still have nonlocal gotos.

        * calls.c (emit_call_1): Nothrow functions can still have nonlocal
        gotos.

From-SVN: r32579

24 years agoRegenerate
Zack Weinberg [Thu, 16 Mar 2000 04:25:12 +0000 (04:25 +0000)]
Regenerate

From-SVN: r32578

24 years agoAdd self as rs6000 maintainer.
Geoffrey Keating [Thu, 16 Mar 2000 03:28:44 +0000 (03:28 +0000)]
Add self as rs6000 maintainer.

From-SVN: r32577

24 years agoSee the ChangeLog on the branch for more details.
Geoff Keating [Thu, 16 Mar 2000 03:16:41 +0000 (03:16 +0000)]
See the ChangeLog on the branch for more details.

* configure.in: Merge in changes from newppc-branch.
* configure: Regenerate.
* config/rs6000/*: Merge in changes from newppc-branch.
Also correct copyright notices.

From-SVN: r32575

24 years agoacconfig.h (HAVE_GAS_WEAK): New define.
Jeffrey A Law [Thu, 16 Mar 2000 01:58:14 +0000 (01:58 +0000)]
acconfig.h (HAVE_GAS_WEAK): New define.

        * acconfig.h (HAVE_GAS_WEAK): New define.
        * configure.in (assembler weak support): Check for .weak support.
        * config.in, configure: Rebuilt.
        * pa/som.h (MAKE_DECL_ONE_ONLY, ASM_WEAKEN_LABEL): Only define if
        HAVE_GAS_WEAK is defined.

From-SVN: r32573

24 years agodecl.c (init_decl_processing): Set type of `sync_info' to be pointer to Object.
Tom Tromey [Thu, 16 Mar 2000 01:32:12 +0000 (01:32 +0000)]
decl.c (init_decl_processing): Set type of `sync_info' to be pointer to Object.

* decl.c (init_decl_processing): Set type of `sync_info' to be
pointer to Object.

* boehm.c (get_boehm_type_descriptor): Correctly compute `bits'.
Correctly compute bit number for current slot.  Zero `high' and
`low' in DS_LENGTH case.  Don't skip inherited fields.  Use
mark_reference_fields.
(mark_reference_fields): New function.

From-SVN: r32572

24 years agoFix gcc tescase compile/990527-1.c by not passing %c to asm_fprintf
Nick Clifton [Wed, 15 Mar 2000 22:06:16 +0000 (22:06 +0000)]
Fix gcc tescase compile/990527-1.c by not passing %c to asm_fprintf

From-SVN: r32569

24 years agocppfiles.c (open_include_file): New function.
Zack Weinberg [Wed, 15 Mar 2000 22:03:37 +0000 (22:03 +0000)]
cppfiles.c (open_include_file): New function.

* cppfiles.c (open_include_file): New function.
(find_include_file, cpp_read_file): Use it.

From-SVN: r32568

24 years ago[multiple changes]
Tom Tromey [Wed, 15 Mar 2000 22:03:19 +0000 (22:03 +0000)]
[multiple changes]

2000-03-15  Tom Tromey  <tromey@cygnus.com>

* java/io/natFileDescriptorWin32.cc (winerr): Now static.

* prims.cc (win32_exception_handler): Reformatted.

* include/win32-threads.h (_Jv_HaveCondDestroy): New define.
(_Jv_HaveMutexDestroy): Likewise.

2000-03-15 Jon Beniston <jb7216@bristol.ac.uk>

* java/io/natFileDescriptorWin32.cc: New file.
* java/io/natFileWin32.cc: New file.
* java/net/natInetAddress.cc: Added conditional inclusion of
Windows / Winsock headers.
* java/net/natPlainDatagramSocketImpl.cc: Added conditional
inclusion of Windows / Winsock headers.
* java/net/natPlainSocketImpl.cc: Added conditional inclusion of
Windows / Winsock headers.
* include/win32-signal.h: New file.
* include/win32-threads.h: New file.
* win32-threads.cc: New file.
* exception.cc (win32_get_restart_frame): New function.
* prims.cc (win32_exception_handler): New function.
(main_init) Performs Winsock initialisation.
(main_init) Installs exeception handler.

From-SVN: r32567

24 years ago* cpphash.c (dump_hash_helper): Take the slot, not the element.
Jason Merrill [Wed, 15 Mar 2000 21:54:47 +0000 (21:54 +0000)]
* cpphash.c (dump_hash_helper): Take the slot, not the element.

From-SVN: r32566

24 years ago* flow.c (verify_flow_info): Check for unconditional return.
Jason Eckhardt [Wed, 15 Mar 2000 20:24:35 +0000 (20:24 +0000)]
* flow.c (verify_flow_info): Check for unconditional return.

From-SVN: r32565

24 years agoPatches to make libobjc build.
Jim Wilson [Wed, 15 Mar 2000 19:35:26 +0000 (19:35 +0000)]
Patches to make libobjc build.

* config/ia64/ia64.md (restore_stack_nonlocal): New.
* config/ia64/lib1funcs.asm (__ia64_nonlocal_goto): Delete padding nop.
(__ia64_restore_stack_nonlocal): New.
* config/ia64/t-ia64 (LIB1ASMFUNCS): Add __restore_stack_nonlocal.

From-SVN: r32564

24 years agocpphash.c (collect_formal_parameters): Do not complain about parameter names that...
Alexandre Oliva [Wed, 15 Mar 2000 18:46:09 +0000 (18:46 +0000)]
cpphash.c (collect_formal_parameters): Do not complain about parameter names that just start with `__VA_ARGS__'.

* cpphash.c (collect_formal_parameters): Do not complain about
parameter names that just start with `__VA_ARGS__'.

From-SVN: r32563

24 years agotinfo2.cc (__ptr_to_member_data): Rename to ...
Nathan Sidwell [Wed, 15 Mar 2000 17:17:45 +0000 (17:17 +0000)]
tinfo2.cc (__ptr_to_member_data): Rename to ...

* tinfo2.cc (__ptr_to_member_data): Rename to ...
(__pointer_to_member_data): ... here. Adjust.
* rtti.c (create_tinfo_types): Adjust.

From-SVN: r32562

24 years ago* libjava.compile/pr176.java: New file, for PR gcj/176.
Tom Tromey [Wed, 15 Mar 2000 16:36:44 +0000 (16:36 +0000)]
* libjava.compile/pr176.java: New file, for PR gcj/176.

From-SVN: r32561

24 years agoi386.md (movhi_1): Promote movw imm...
Jan Hubicka [Wed, 15 Mar 2000 12:34:40 +0000 (13:34 +0100)]
i386.md (movhi_1): Promote movw imm...

* i386.md (movhi_1): Promote movw imm, reg to movl imm, reg and
movw reg, reg to movzwl reg, reg on PARTIAL_REGISTER_STALL machines.
* i386.c (pentiumpro_cost): Set mul cost to 4.
(x86_use_movx): Set for PPro.

From-SVN: r32560

24 years agoi386.md (ix86_compute_frame_size): stack_alignment_needed is STACK_BOUNDARY for empty...
Jan Hubicka [Wed, 15 Mar 2000 12:10:59 +0000 (13:10 +0100)]
i386.md (ix86_compute_frame_size): stack_alignment_needed is STACK_BOUNDARY for empty frames now.

* i386.md (ix86_compute_frame_size): stack_alignment_needed is
STACK_BOUNDARY for empty frames now.

From-SVN: r32559

24 years agocp-tree.h (CPTI_REF_DESC_TYPE, [...]): Remove.
Nathan Sidwell [Wed, 15 Mar 2000 10:40:27 +0000 (10:40 +0000)]
cp-tree.h (CPTI_REF_DESC_TYPE, [...]): Remove.

* cp-tree.h (CPTI_REF_DESC_TYPE, ref_desc_type_node): Remove.
* decl.c (ref_desc_type_node): Undocument.
* rtti.c (ptr_ref_initializer): Rename to ...
(ptr_initializer): ... here. Adjust comments.
(ptmd_initializer): Fix comment thinko.
(synthesize_tinfo_var): Remove REFERENCE_TYPE case.
(create_tinfo_types): Remove ref_desc_type_node init.
* tinfo2.cc (__reference_type_info): Remove.

From-SVN: r32558

24 years agodecl.c (cp_finish_decl): Remove obsolete comment.
Nathan Sidwell [Wed, 15 Mar 2000 09:45:39 +0000 (09:45 +0000)]
decl.c (cp_finish_decl): Remove obsolete comment.

* decl.c (cp_finish_decl): Remove obsolete comment.

* typeck.c (build_ptrmemfunc1): Kill uninitialized warning.

From-SVN: r32557

24 years agore GNATS gcj/172 (compiler rejects inner-class argument to inner-class constructor)
Alexandre Petit-Bianco [Wed, 15 Mar 2000 09:30:39 +0000 (09:30 +0000)]
re GNATS gcj/172 (compiler rejects inner-class argument to inner-class constructor)

Tue Mar 14 17:15:41 2000  Alexandre Petit-Bianco  <apbianco@cygnus.com>

* parse.y (register_incomplete_type): Fixed initialization of
JDEP_ENCLOSING.

(This is a fix to the gcj PR #172:
 http://sourceware.cygnus.com/ml/java-prs/2000-q1/msg00169.html)

From-SVN: r32556

24 years agoDaily bump.
Jeff Law [Wed, 15 Mar 2000 08:45:07 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r32555

24 years ago* libjava.compile/PR140.xfail: New file.
Bryce McKinlay [Wed, 15 Mar 2000 03:23:04 +0000 (03:23 +0000)]
* libjava.compile/PR140.xfail: New file.

From-SVN: r32553

24 years agopr172.java: Correct classname to match file name.
Bryce McKinlay [Wed, 15 Mar 2000 03:14:24 +0000 (03:14 +0000)]
pr172.java: Correct classname to match file name.

2000-03-15  Bryce McKinlay  <bryce@albatross.co.nz>

        * libjava.compile/pr172.java: Correct classname to match file name.
        * libjava.compile/pr174.java: ditto. Remove superfluous main()
        method.

From-SVN: r32552

24 years ago* libjava.compile/PR140.java: New file, for PR gcj/140.
Tom Tromey [Wed, 15 Mar 2000 01:45:10 +0000 (01:45 +0000)]
* libjava.compile/PR140.java: New file, for PR gcj/140.

From-SVN: r32551

24 years agocp-tree.h: Tweak documentation.
Mark Mitchell [Wed, 15 Mar 2000 00:46:47 +0000 (00:46 +0000)]
cp-tree.h: Tweak documentation.

* cp-tree.h: Tweak documentation.
* class.c (build_vbase_pointer_fields): Layout the fields, too.
(avoid_overlap): Remove.
(get_binfo_offset_as_int): New function.
(dfs_serach_base_offsets): Likewise.
(layout_nonempty_base_or_field): Likewise.
(build_base_field): Layout fields here.  Avoid placing two objects
of the same type at the same address, under the new ABI.
(build_base_fields): Adjust accordingly.
(create_vtable_ptr): Return the new field, but don't attach it to
TYPE_FIELDS.
(remove_base_field): Remove.
(remove_base_fields): Remove.
(layout_basetypes): Adjust accordingly.
(layout_class_type): Call layout_field for each field, rather than
just making a wholesale call to layout_type.

From-SVN: r32550

24 years agocp-tree.h: Tweak documentation.
Mark Mitchell [Wed, 15 Mar 2000 00:16:21 +0000 (00:16 +0000)]
cp-tree.h: Tweak documentation.

* cp-tree.h: Tweak documentation.
* class.c (build_vbase_pointer_fields): Layout the fields, too.
(avoid_overlap): Remove.
(get_binfo_offset_as_int): New function.
(dfs_serach_base_offsets): Likewise.
(layout_nonempty_base_or_field): Likewise.
(build_base_field): Layout fields here.  Avoid placing two objects
of the same type at the same address, under the new ABI.
(build_base_fields): Adjust accordingly.
(create_vtable_ptr): Return the new field, but don't attach it to
TYPE_FIELDS.
(remove_base_field): Remove.
(remove_base_fields): Remove.
(layout_basetypes): Adjust accordingly.
(layout_class_type): Call layout_field for each field, rather than
just making a wholesale call to layout_type.

From-SVN: r32549

24 years agostor-layout.c (layout_union): Remove.
Mark Mitchell [Wed, 15 Mar 2000 00:12:37 +0000 (00:12 +0000)]
stor-layout.c (layout_union): Remove.

* stor-layout.c (layout_union): Remove.
(layout_union_field): New function, split out from layout_union.
(finish_union_layout): Likewise.
(layout_field): Handle unions by calling layout_union_field.
(finish_record_layout): Handle unions.
(layout_type): Combine RECORD_TYPE, UNION_TYPE, and
QUAL_UNION_TYPE handling.

From-SVN: r32548

24 years agoflow.c (fixup_reorder_chain): Avoid double labels in the basic block...
Jan Hubicka [Tue, 14 Mar 2000 22:50:19 +0000 (23:50 +0100)]
flow.c (fixup_reorder_chain): Avoid double labels in the basic block...

        * flow.c (fixup_reorder_chain): Avoid double labels in the basic block;
        end of basic block is jump_insn, not barrier; use create_basic_block
        instead of creating basic block by hand.

From-SVN: r32547

24 years agojni.cc (mangled_name): Fixed assertion.
Tom Tromey [Tue, 14 Mar 2000 21:59:54 +0000 (21:59 +0000)]
jni.cc (mangled_name): Fixed assertion.

* jni.cc (mangled_name): Fixed assertion.
(JNI_GetCreatedJavaVMs): Don't comment out `buf_len' argument;
turned assert into actual failure.

From-SVN: r32546

24 years agoflow.c (reorder_basic_blocks): Account for barriers when writing over NEXT_INSN ...
Jason Eckhardt [Tue, 14 Mar 2000 21:21:18 +0000 (21:21 +0000)]
flow.c (reorder_basic_blocks): Account for barriers when writing over NEXT_INSN (last_bb->end).

* flow.c (reorder_basic_blocks): Account for barriers when writing
over NEXT_INSN (last_bb->end).
(verify_flow_info): Add check for missing barriers.

From-SVN: r32545

24 years agoDelete useless, generated texinfo index
Zack Weinberg [Tue, 14 Mar 2000 21:18:29 +0000 (21:18 +0000)]
Delete useless, generated texinfo index

From-SVN: r32544

24 years agocheck-init.c (check_init): Add new cases for unary and binary tree nodes.
Andrew Haley [Tue, 14 Mar 2000 20:54:55 +0000 (20:54 +0000)]
check-init.c (check_init): Add new cases for unary and binary tree nodes.

2000-02-14  Andrew Haley  <aph@cygnus.com>

        * check-init.c (check_init): Add new cases for unary and binary
        tree nodes.

From-SVN: r32543

24 years ago* gcc.c-torture/execute/20000314-3.c: New test.
Jeffrey A Law [Tue, 14 Mar 2000 20:30:10 +0000 (20:30 +0000)]
* gcc.c-torture/execute/20000314-3.c: New test.

From-SVN: r32542

24 years agoc-parse.y, [...]: Regenerate.
Greg McGary [Tue, 14 Mar 2000 19:54:04 +0000 (19:54 +0000)]
c-parse.y, [...]: Regenerate.

* c-parse.y, c-parse.c, c-parse.h: Regenerate.
* objc/objc-parse.y, objc/objc-parse.c: Regenerate.

From-SVN: r32541

24 years agoc-lex.h (enum rid): Add RID_BOUNDED & RID_UNBOUNDED.
Greg McGary [Tue, 14 Mar 2000 19:42:11 +0000 (19:42 +0000)]
c-lex.h (enum rid): Add RID_BOUNDED & RID_UNBOUNDED.

* c-lex.h (enum rid): Add RID_BOUNDED & RID_UNBOUNDED.
* c-lex.c (init_lex): Handle RID_BOUNDED & RID_UNBOUNDED.
* c-parse.gperf (__bounded, __bounded__, __ptrbase, __ptrbase__,
__ptrextent, __ptrextent__, __ptrvalue, __ptrvalue__,
__unbounded, __unbounded__): New keywords.
* c-parse.in (PTR_VALUE PTR_BASE PTR_EXTENT): New tokens.

From-SVN: r32540

24 years ago* libjava.compile/pr172.java: New file, for PR gcj/172.
Tom Tromey [Tue, 14 Mar 2000 18:37:18 +0000 (18:37 +0000)]
* libjava.compile/pr172.java: New file, for PR gcj/172.

From-SVN: r32539

24 years agoAdd cselib; use it in loop and reload_cse_regs
Bernd Schmidt [Tue, 14 Mar 2000 18:36:18 +0000 (18:36 +0000)]
Add cselib; use it in loop and reload_cse_regs

From-SVN: r32538

24 years ago* libjava.compile/pr174.java: New file, for PR gcj/174.
Tom Tromey [Tue, 14 Mar 2000 18:35:02 +0000 (18:35 +0000)]
* libjava.compile/pr174.java: New file, for PR gcj/174.

From-SVN: r32537

24 years agoSome cleanups/additions for hashtables
Bernd Schmidt [Tue, 14 Mar 2000 18:28:45 +0000 (18:28 +0000)]
Some cleanups/additions for hashtables

From-SVN: r32536

24 years agoFix spec string parsing bugs
Nick Clifton [Tue, 14 Mar 2000 18:08:35 +0000 (18:08 +0000)]
Fix spec string parsing bugs

From-SVN: r32535

24 years agofunction.c (prepare_function_start): Correctly initialize cfun->stack_alignment_needed.
Richard Earnshaw [Tue, 14 Mar 2000 17:48:48 +0000 (17:48 +0000)]
function.c (prepare_function_start): Correctly initialize cfun->stack_alignment_needed.

* function.c (prepare_function_start): Correctly initialize
cfun->stack_alignment_needed.

From-SVN: r32534

24 years agocppfiles.c (find_include_file): Don't assume nshort is a substring of name.
Zack Weinberg [Tue, 14 Mar 2000 17:25:24 +0000 (17:25 +0000)]
cppfiles.c (find_include_file): Don't assume nshort is a substring of name.

* cppfiles.c (find_include_file): Don't assume nshort is a
substring of name.

From-SVN: r32533

24 years ago* gcc.c-torture/execute/20000314-2.c: New test.
Jeffrey A Law [Tue, 14 Mar 2000 16:49:03 +0000 (16:49 +0000)]
* gcc.c-torture/execute/20000314-2.c: New test.

From-SVN: r32532

24 years ago* gcc.c-torture/compile/20000314-2.c: New test.
Jeffrey A Law [Tue, 14 Mar 2000 16:28:08 +0000 (16:28 +0000)]
* gcc.c-torture/compile/20000314-2.c: New test.

From-SVN: r32531

24 years ago* gcc.c-torture/execute/2000314-1.c: New test.
Jeffrey A Law [Tue, 14 Mar 2000 16:10:27 +0000 (16:10 +0000)]
* gcc.c-torture/execute/2000314-1.c: New test.

From-SVN: r32530

24 years agoNew test.
Jeffrey A Law [Tue, 14 Mar 2000 16:06:24 +0000 (16:06 +0000)]
New test.

From-SVN: r32529

24 years agoconfigure.in (hppa configurations): Add pa32-regs.h to the list of tm files as approp...
Jeffrey A Law [Tue, 14 Mar 2000 15:47:24 +0000 (15:47 +0000)]
configure.in (hppa configurations): Add pa32-regs.h to the list of tm files as appropriate.

        * configure.in (hppa configurations): Add pa32-regs.h to the
        list of tm files as appropriate.
        * configure: Rebuilt.
        * pa.c (compute_frame_size): Remove explicit knowledge about FP
        register numbering.
        (hppa_expand_prologue, hppa_expand_epilogue): Likewise.
        (fmpyaddoperands, fmpysuboperands): Likewise.
        * pa.h: Remove various definitions which depend on knowing
        how registers are numbered.
        * pa32-regs.h: New file with PA32 register numbering specific
        definitions.

From-SVN: r32527

24 years agoregmove.c (combine_stack_adjustments): New.
Richard Henderson [Tue, 14 Mar 2000 14:38:52 +0000 (06:38 -0800)]
regmove.c (combine_stack_adjustments): New.

        * regmove.c (combine_stack_adjustments): New.
        (stack_memref_p, single_set_for_csa): New.
        (free_csa_memlist, record_one_stack_memref): New.
        (try_apply_stack_adjustment): New.
        (combine_stack_adjustments_for_block): New.
        * rtl.h (combine_stack_adjustments): Declare.
        * toplev.c (rest_of_compilation): Call it.

        * i386.md: Revert 2000-01-16 change.

From-SVN: r32526

24 years ago* gccbug.in: Add web category, gcc specific classes.
Martin v. Löwis [Tue, 14 Mar 2000 09:50:58 +0000 (09:50 +0000)]
* gccbug.in: Add web category, gcc specific classes.

From-SVN: r32525

24 years ago* stor-layout.c (finalize_record_size): Fix typo.
Nathan Sidwell [Tue, 14 Mar 2000 09:36:03 +0000 (09:36 +0000)]
* stor-layout.c (finalize_record_size): Fix typo.

From-SVN: r32524

24 years agoDaily bump.
Jeff Law [Tue, 14 Mar 2000 08:45:07 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r32523

24 years agoc-typeck.c (c_alignof): Error on incomplete types.
Stan Shebs [Tue, 14 Mar 2000 08:24:21 +0000 (08:24 +0000)]
c-typeck.c (c_alignof): Error on incomplete types.

        * c-typeck.c (c_alignof): Error on incomplete types.
        * extend.texi (Alignment): Document this.

From-SVN: r32522

24 years agoJeff Sturm <jsturm@sigma6.com>
Jeff Sturm [Tue, 14 Mar 2000 08:11:38 +0000 (08:11 +0000)]
Jeff Sturm  <jsturm@sigma6.com>

        * except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.

From-SVN: r32521

24 years agoparse.y (resolve_package): Set `next' once a type name has been progressively discovered.
Alexandre Petit-Bianco [Tue, 14 Mar 2000 07:51:42 +0000 (07:51 +0000)]
parse.y (resolve_package): Set `next' once a type name has been progressively discovered.

2000-03-13  Alexandre Petit-Bianco  <apbianco@cygnus.com>

* parse.y (resolve_package): Set `next' once a type name has been
progressively discovered.
(resolve_qualified_expression_name): Propagate resolution only if
there are remaining qualifiers. Take into account `q' might have
been cleared after re-qualification.
* parse.y (patch_method_invocation): New local `resolved'.
   Section dealing with qualified expression rewritten to use
  resolve_field_access.

From-SVN: r32520

24 years agocppfiles.c: Include mkdeps.h.
Zack Weinberg [Tue, 14 Mar 2000 06:34:11 +0000 (06:34 +0000)]
cppfiles.c: Include mkdeps.h.

* cppfiles.c: Include mkdeps.h.
(find_include_file, read_include_file): Remove _cpp_ prefix
from name, make static.
(_cpp_execute_include): New function, broken out of
do_include.

* cpplib.c: Don't include mkdeps.h.
(struct directive): Remove type field. Reorder entries.  The
function takes only one argument.
(struct if_stack): Make type field an int.
(directive_table): Rename to dtable.  Generate it, the
prototypes of the directive handlers, and the enum for the
directive numbers, from a template macro.
(do_ifndef, do_include_next, do_import): New functions.
(do_define, do_include, do_endif, do_ifdef, do_if, do_else,
do_undef, do_line, do_elif, do_error, do_pragma, do_warning,
do_ident, do_assert, do_unassert, do_sccs): Take only one
argument.
(do_sccs): Define always, but alter behavior based on
SCCS_DIRECTIVE.
(_cpp_handle_directive, consider_directive_while_skipping):
Restructure for new directive table layout.

(pass_thru_directive): Take a directive number, not a pointer
to a struct directive.
(parse_include): New function, broken out of do_include.
(do_include, do_import, do_include_next): Use parse_include
and _cpp_execute_include.
(do_elif, do_else): Test for T_ELSE specifically when checking
for #elif/#else after #else.
(parse_ifdef): New function, broken out of do_ifdef.
(validate_else): Expect a name arg without a leading #.
(if_directive_name): Delete.
(cpp_define, cpp_assert, cpp_undef, cpp_unassert): Call
directive handlers with only one argument.

* cpphash.h: Update prototypes.
(enum node_type): Remove entries for directives.
* Makefile.in: Update dependencies.

From-SVN: r32519

24 years agocpphash.c (dump_hash_helper): Only dump nodes of type T_MACRO.
Zack Weinberg [Tue, 14 Mar 2000 06:10:27 +0000 (06:10 +0000)]
cpphash.c (dump_hash_helper): Only dump nodes of type T_MACRO.

* cpphash.c (dump_hash_helper): Only dump nodes of type
T_MACRO.  Emit a newline after each definition.

From-SVN: r32518

24 years agoAdded Java 1.1 language features.
Alexandre Petit-Bianco [Tue, 14 Mar 2000 05:01:05 +0000 (21:01 -0800)]
Added Java 1.1 language features.

From-SVN: r32517

24 years agogccbug.in: New file.
Martin v. Löwis [Mon, 13 Mar 2000 23:51:26 +0000 (23:51 +0000)]
gccbug.in: New file.

* gccbug.in: New file.
* configure.in (all_outputs): Add gccbug.
* Makefile.in (install-common): Install gccbug.
(GCCBUG_INSTALL_NAME): New variable.
* configure: Rebuilt.

From-SVN: r32515

24 years agofunction.c (put_var_into_stack): Use type_for_mode to calculate part_type.
Jason Merrill [Mon, 13 Mar 2000 22:54:03 +0000 (22:54 +0000)]
function.c (put_var_into_stack): Use type_for_mode to calculate part_type.

        * function.c (put_var_into_stack): Use type_for_mode to calculate
        part_type.  Use MEM_SET_IN_STRUCT_P.
        * expr.c (store_field): Handle CONCAT.
        (store_constructor): Use fields_length.
        * tree.c (fields_length): New fn.
        * tree.h: Declare it.

From-SVN: r32514

24 years agoMakefile.in (LIBCPP_OBJS): Add cpplex.o.
Zack Weinberg [Mon, 13 Mar 2000 22:01:08 +0000 (22:01 +0000)]
Makefile.in (LIBCPP_OBJS): Add cpplex.o.

* Makefile.in (LIBCPP_OBJS): Add cpplex.o.
(cpplex.o): New target.
* po/POTFILES.in: Add cpplex.c.

* cpplex.c (_cpp_grow_token_buffer, null_cleanup,
cpp_push_buffer, cpp_pop_buffer, cpp_scan_buffer,
cpp_expand_to_buffer, cpp_buf_line_and_col, cpp_file_buffer,
skip_block_comment, skip_line_comment, skip_comment,
copy_comment, _cpp_skip_hspace, _cpp_skip_rest_of_line,
_cpp_parse_name, skip_string, parse_string,
_cpp_parse_assertion, cpp_get_token, cpp_get_non_space_token,
_cpp_get_directive_token, find_position,
_cpp_read_and_prescan, _cpp_init_input_buffer): Move here.
(maybe_macroexpand, _cpp_lex_token): New functions.

* cpplib.c (SKIP_WHITE_SPACE, eval_if_expr, parse_set_mark,
parse_goto_mark): Delete.
(_cpp_handle_eof): New function.
(_cpp_handle_directive): Rename from handle_directive.
(_cpp_output_line_command): Rename from output_line_command.
(do_if, do_elif): Call _cpp_parse_expr directly.
* cppfiles.c (_cpp_read_include_file): Don't call
init_input_buffer here.
* cpphash.c (quote_string): Move here, rename _cpp_quote_string.
* cppexp.c (_cpp_parse_expr): Diddle parsing_if_directive
here; pop the token_buffer and skip the rest of the line here.
* cppinit.c (cpp_start_read): Call _cpp_init_input_buffer
here.

* cpphash.h (CPP_RESERVE, CPP_IS_MACRO_BUFFER, ACTIVE_MARK_P):
Define here.
(CPP_SET_BUF_MARK, CPP_GOTO_BUF_MARK, CPP_SET_MARK,
CPP_GOTO_MARK): New macros.
(_cpp_quote_string, _cpp_parse_name, _cpp_skip_rest_of_line,
_cpp_skip_hspace, _cpp_parse_assertion, _cpp_lex_token,
_cpp_read_and_prescan, _cpp_init_input_buffer,
_cpp_grow_token_buffer, _cpp_get_directive_token,
_cpp_handle_directive, _cpp_handle_eof,
_cpp_output_line_command): Prototype them here.
* cpplib.h (enum cpp_token): Add CPP_MACRO.
(CPP_RESERVE, get_directive_token, cpp_grow_buffer,
quote_string, output_line_command): Remove.

From-SVN: r32513

24 years agotypeck.c (build_prim_array_type): Correctly set the high word too.
Hans Boehm [Mon, 13 Mar 2000 21:36:09 +0000 (21:36 +0000)]
typeck.c (build_prim_array_type): Correctly set the high word too.

Mon Mar 13 11:36:51 2000  Hans Boehm <boehm@acm.org>

* typeck.c (build_prim_array_type): Correctly set the high word too.

From-SVN: r32512

24 years agoFix recently introduced error in expand_end_case.
Bernd Schmidt [Mon, 13 Mar 2000 19:35:38 +0000 (19:35 +0000)]
Fix recently introduced error in expand_end_case.

From-SVN: r32511

24 years agodecl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.
Jason Merrill [Mon, 13 Mar 2000 19:23:34 +0000 (19:23 +0000)]
decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.

        * decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.

        * except.c (dtor_nothrow): New fn.
        (do_pop_exception): Use it.  Take type parm.
        (push_eh_cleanup): Take type parm.
        (expand_start_catch_block): Pass it.
        (build_eh_type_type_ref): Accept null type.

From-SVN: r32510

24 years agoNew test; for ia32 codegen bug.
Zack Weinberg [Mon, 13 Mar 2000 17:41:35 +0000 (17:41 +0000)]
New test; for ia32 codegen bug.

Reported by Daniel Lauer <daniel@informatik.uni-bonn.de>

From-SVN: r32509

24 years agosparc.md: Remove all traces of TARGET_LIVE_G0.
Jakub Jelinek [Mon, 13 Mar 2000 17:34:57 +0000 (18:34 +0100)]
sparc.md: Remove all traces of TARGET_LIVE_G0.

* config/sparc/sparc.md: Remove all traces of TARGET_LIVE_G0.
(movsi_zero_liveg0): Remove.
(movsf_insn_novis_liveg0): Remove.
(negsi2): Remove.
(negsi2_not_liveg0): Rename to negsi2.
(one_cmplsi2): Remove.
(one_cmplsi2_not_liveg0): Rename to one_cmplsi2.
(one_cmplsi2_liveg0): Remove.
* config/sparc/sparc.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE,
MASK_LIVE_G0, MASK_BROKEN_SAVERESTORE): Remove.
(CONDITIONAL_REGISTER_USAGE): Remove TARGET_LIVE_G0 if.
(PREDICATE_CODES): Remove zero_operand.
* config/sparc/sparc.c: Remove all traces of TARGET_LIVE_G0 and
TARGET_BROKEN_SAVERESTORE.
(zero_operand): Remove.
* config/sparc/splet.h (SUBTARGET_SWITCHES): Remove -mlive-g0,
-mno-live-g0, -mbroken-saverestore and -mno-broken-saverestore
options.
(SUBTARGET_OVERRIDE_OPTIONS): Remove.
* config/sparc/linux-aout.h (TARGET_LIVE_G0,
TARGET_BROKEN_SAVERESTORE): Remove.
* config/sparc/linux.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
Remove.
* config/sparc/linux64.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
Remove.
* config/sparc/sol2.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
Remove.

* config/sparc/sparc.md (return_df_no_fpu): New pattern.

From-SVN: r32508

24 years agocpplib.c (do_pragma_implementation): Fix off-by-one error truncating a string.
Zack Weinberg [Mon, 13 Mar 2000 17:25:36 +0000 (17:25 +0000)]
cpplib.c (do_pragma_implementation): Fix off-by-one error truncating a string.

* cpplib.c (do_pragma_implementation): Fix off-by-one error
truncating a string.  Don't assume tokens are nul terminated.
Problem noted by Andreas Jaeger <aj@suse.de>

From-SVN: r32507

24 years agodwarf2out.c (add_name_and_src_coords_attributes): Only add DW_AT_MIPS_linkage_name...
Jason Merrill [Mon, 13 Mar 2000 15:09:49 +0000 (15:09 +0000)]
dwarf2out.c (add_name_and_src_coords_attributes): Only add DW_AT_MIPS_linkage_name for TREE_PUBLIC decls.

        * dwarf2out.c (add_name_and_src_coords_attributes): Only add
        DW_AT_MIPS_linkage_name for TREE_PUBLIC decls.
        (ASM_OUTPUT_DWARF_ADDR_CONST): Don't output trailing newline.

From-SVN: r32506

24 years agostor-layout.c (new_record_layout_info): Fix typo inside ifdef STRUCTURE_SIZE_BOUNDARY.
Richard Earnshaw [Mon, 13 Mar 2000 13:24:54 +0000 (13:24 +0000)]
stor-layout.c (new_record_layout_info): Fix typo inside ifdef STRUCTURE_SIZE_BOUNDARY.

* stor-layout.c (new_record_layout_info): Fix typo inside ifdef
STRUCTURE_SIZE_BOUNDARY.

From-SVN: r32505

24 years ago* g++.old-deja/g++.warn/inline.C: New test.
Nathan Sidwell [Mon, 13 Mar 2000 11:12:13 +0000 (11:12 +0000)]
* g++.old-deja/g++.warn/inline.C: New test.

From-SVN: r32504

24 years agotree.h (record_layout_info_s): New structure.
Mark Mitchell [Mon, 13 Mar 2000 09:12:50 +0000 (09:12 +0000)]
tree.h (record_layout_info_s): New structure.

* tree.h (record_layout_info_s): New structure.
(record_layout_info): New type.
(new_record_layout_info): New function.
(layout_field): Likewise.
(finish_record_layout): Likewise.
* stor-layout.c (layout_record): Remove.
(new_record_layout_info): New function.
(layout_field): New function, broken out from layout_record.
(finalize_record_size): Likewise.
(compute_record_mode): Likewise.
(finalize_type_size): New function, broken out from layout_type.
(finish_record_layout): Likewise.
(layout_type): Use them.

From-SVN: r32503

24 years agoDaily bump.
Jeff Law [Mon, 13 Mar 2000 08:45:08 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r32502

24 years agocp-tree.h (revert_static_member_fn): Change prototype.
Mark Mitchell [Mon, 13 Mar 2000 04:54:39 +0000 (04:54 +0000)]
cp-tree.h (revert_static_member_fn): Change prototype.

* cp-tree.h (revert_static_member_fn): Change prototype.
* decl.c (grokfndecl): Adjust call to revert_static_member_fn.
(grok_op_properties): Likewise.
(start_function): Likewise.
(revert_static_member_fn): Simplify.
* pt.c (check_explicit_specialization): Adjust call to
revert_static_member_fn.

From-SVN: r32501

24 years agotoon forgot to check in configure
Zack Weinberg [Mon, 13 Mar 2000 03:43:19 +0000 (03:43 +0000)]
toon forgot to check in configure

From-SVN: r32500