gcc.git
23 years agotoplev.c, [...]: Change comments mentioning C9X to refer to C99 instead.
Joseph Myers [Sun, 29 Oct 2000 19:34:53 +0000 (19:34 +0000)]
toplev.c, [...]: Change comments mentioning C9X to refer to C99 instead.

* toplev.c, flags.h, fold-const.c, real.c, rtl.c,
fixinc/inclhack.def: Change comments mentioning C9X to refer to
C99 instead.

From-SVN: r37127

23 years agodefined.c, [...]: New tests.
Neil Booth [Sun, 29 Oct 2000 17:43:57 +0000 (17:43 +0000)]
defined.c, [...]: New tests.

* gcc.dg/cpp/defined.c, include1.c, paste11.c, skipping.c:
New tests.
* gcc.dg/cpp/macsyntx.c: Move test to defined.c.
* gcc.dg/cpp/mi3.c, mi3.h: New test for over-enthusiastic
optimisation.

From-SVN: r37126

23 years agoinvoke.texi: Document that -V will only work for very similar versions of driver...
Joseph Myers [Sun, 29 Oct 2000 17:37:50 +0000 (17:37 +0000)]
invoke.texi: Document that -V will only work for very similar versions of driver and compiler.

* invoke.texi: Document that -V will only work for very similar
versions of driver and compiler.

From-SVN: r37125

23 years agomacro4.c, macro5.c: New tests.
Neil Booth [Sun, 29 Oct 2000 11:49:09 +0000 (11:49 +0000)]
macro4.c, macro5.c: New tests.

        * gcc.dg/cpp/macro4.c, macro5.c: New tests.
        * mi1.c, mi1c.h: Add null directives to multiple-include test.
        * mi5.c: Test multiple includes work with -C.
        * trigraphs.c: Test ^= version.

From-SVN: r37124

23 years agocppmacro.c (_cpp_create_definition): Optimize the case of a macro defined to itself.
Neil Booth [Sun, 29 Oct 2000 11:37:18 +0000 (11:37 +0000)]
cppmacro.c (_cpp_create_definition): Optimize the case of a macro defined to itself.

* cppmacro.c (_cpp_create_definition): Optimize the case of
        a macro defined to itself.

From-SVN: r37123

23 years ago* cpplex.c (save_comment): Don't store new lines in C++ comments.
Neil Booth [Sun, 29 Oct 2000 09:56:00 +0000 (09:56 +0000)]
* cpplex.c (save_comment): Don't store new lines in C++ comments.

From-SVN: r37122

23 years ago* integrate.c (copy_insn_list): Copy the unchanging flag for calls.
Michael Hayes [Sun, 29 Oct 2000 09:14:22 +0000 (09:14 +0000)]
* integrate.c (copy_insn_list): Copy the unchanging flag for calls.

From-SVN: r37121

23 years agoDaily bump.
Jeff Law [Sun, 29 Oct 2000 07:45:08 +0000 (01:45 -0600)]
Daily bump.

From-SVN: r37120

23 years agocpphash.c (cpp_forall_identifiers): Add context variable for callback routine.
Geoff Keating [Sun, 29 Oct 2000 07:07:20 +0000 (07:07 +0000)]
cpphash.c (cpp_forall_identifiers): Add context variable for callback routine.

* cpphash.c (cpp_forall_identifiers): Add context variable
for callback routine.
* cppmain.c (dump_macro): Update to match cpp_forall_identifiers
change.
(main): Call cpp_forall_identifiers with null context.
* cpplib.h (cpp_forall_identifiers): Update prototype.

* cppmain.c: Make `parse_in' and `print' static.

From-SVN: r37119

23 years ago* c-decl.c (finish_function): Clear c_function_name_declared_p.
Alan Modra [Sun, 29 Oct 2000 05:59:58 +0000 (05:59 +0000)]
* c-decl.c (finish_function): Clear c_function_name_declared_p.

From-SVN: r37118

23 years agoregrename.c (scan_rtx_address): Frob action, not class, when trying to disable optimi...
Richard Henderson [Sun, 29 Oct 2000 05:41:44 +0000 (22:41 -0700)]
regrename.c (scan_rtx_address): Frob action, not class, when trying to disable optimization.

        * regrename.c (scan_rtx_address): Frob action, not class,
        when trying to disable optimization.

From-SVN: r37117

23 years agoAbstractCollection.java (addAll): Use size() instead of hasNext() in iterator loop.
Bryce McKinlay [Sun, 29 Oct 2000 05:06:10 +0000 (05:06 +0000)]
AbstractCollection.java (addAll): Use size() instead of hasNext() in iterator loop.

2000-10-29  Bryce McKinlay  <bryce@albatross.co.nz>

* java/util/AbstractCollection.java (addAll): Use size() instead of
hasNext() in iterator loop.
(clear): Ditto.
(contains): Ditto. Simplify loop.
(containsAll): Ditto.
(remove): Ditto.
(removeAll): Ditto.
(retainAll): Ditto.
(toArray): Ditto.
(toString): Ditto. Use string concatenation operators, not
StringBuffer.
* java/util/AbstractList.java (addAll): Use size() instead of
hasNext() in iterator loop.
(equals): Ditto.
(hashCode): Ditto.
(indexOf): Ditto. Don't take null check outside of the loop.
(iterator): Return an AbstractListItr instead of anonymous class.
(lastIndexOf): Use a for loop bounded by size() instead of
hasPrevious() in iterator loop.
(listIterator): Return an AbstractListItr.
(removeRange): Remove bounds checking code and docs.
(AbstractListItr): New inner class. Code moved here from
listIterator().
(SubList.iterator): Removed. Use default implementation from
AbstractList instead.
(SubList.listIterator): As above.
* java/util/AbstractMap.java (clear): Use a for loop bounded by size()
instead of hasNext() in iterator loop.
(containsValue): Ditto.
(equals): Ditto.
(get): Ditto.
(put): Ditto.
(putAll): Ditto.
(remove): Ditto.
(toString): Ditto. Use string concatenation operators, not
StringBuffer.
* java/util/AbstractSequentialList.java (addAll): Use a for loop
bounded by size() instead of hasNext() in iterator loop.
* java/util/AbstractSet.java (hashCode): Don't catch exception as
part of normal execution flow. Do an explicit null check instead.
* java/util/ArrayList.java (_iSize): Rename to `size'.
(_arData): Rename to `data'.
(get): Check lower bounds also. Simplify IndexOutOfBoundsException
message.
(remove): Ditto.
(removeRange): Make protected. Don't check bounds.
(add): Check lower bounds also. Simplify IndexOutOfBoundsException
message.
(addAll (Collection)): Use a size-bounded for loop instead of hasNext()
check.
(addAll (int, Collection)): Check lower bounds. Simplify exception
string.
(clone): Clone the data array too.
(indexOf): Inline doesEqual().
(lastIndexOf): Ditto.
(clear): Don't set array data to null.
(set): Check lower bounds. Simplify exception string.
(toArray): Correct comment.
(trimToSize): Don't update modCount, this is not a structural change.
Add comment.

* java/util/BitSet.java: Merged with classpath, new JDK 1.2 methods
implemented.
(toString): Declare `bit' as long, not int.
(data): Made package-private, not private.

From-SVN: r37116

23 years agoRe-indent in preparation for diff.
Bryce McKinlay [Sun, 29 Oct 2000 04:46:45 +0000 (04:46 +0000)]
Re-indent in preparation for diff.

From-SVN: r37115

23 years agoRe-indent in preparation for diff.
Bryce McKinlay [Sun, 29 Oct 2000 04:44:10 +0000 (04:44 +0000)]
Re-indent in preparation for diff.

From-SVN: r37114

23 years agoNew test
Mark Mitchell [Sun, 29 Oct 2000 02:30:21 +0000 (02:30 +0000)]
New test

From-SVN: r37113

23 years agoc-semantics.c (make_rtl_for_local_static): Don't clobber DECL_ASSEMBLER_NAME.
Mark Mitchell [Sun, 29 Oct 2000 02:26:16 +0000 (02:26 +0000)]
c-semantics.c (make_rtl_for_local_static): Don't clobber DECL_ASSEMBLER_NAME.

* c-semantics.c (make_rtl_for_local_static): Don't clobber
DECL_ASSEMBLER_NAME.

From-SVN: r37112

23 years agoconfigure.in: Determine and substitute gcc_version_full.
Joseph Myers [Sat, 28 Oct 2000 21:44:52 +0000 (22:44 +0100)]
configure.in: Determine and substitute gcc_version_full.

* configure.in: Determine and substitute gcc_version_full.
* configure: Regenerate.
* gccbug.in: Use it to give full version.  Don't allow
confidential PRs.

From-SVN: r37111

23 years agorecog.c (split_all_insns): Run cleanup_subreg_operands after reload.
Richard Henderson [Sat, 28 Oct 2000 21:43:29 +0000 (14:43 -0700)]
recog.c (split_all_insns): Run cleanup_subreg_operands after reload.

        * recog.c (split_all_insns): Run cleanup_subreg_operands
        after reload.

From-SVN: r37110

23 years agoregrename.c (regrename_optimize): Verify that all registers of a multiple register...
Richard Henderson [Sat, 28 Oct 2000 21:41:24 +0000 (14:41 -0700)]
regrename.c (regrename_optimize): Verify that all registers of a multiple register mode are available.

        * regrename.c (regrename_optimize): Verify that all registers of
        a multiple register mode are available.
        (scan_rtx_address): Accept the mode of the address; all callers
        changed.

From-SVN: r37109

23 years ago* cpplib.c (run_directive): Fix prototype.
Richard Henderson [Sat, 28 Oct 2000 21:40:43 +0000 (14:40 -0700)]
* cpplib.c (run_directive): Fix prototype.

From-SVN: r37108

23 years agopt.c (instantiate_decl): Always instantiate static data members initialized in-class.
Mark Mitchell [Sat, 28 Oct 2000 21:37:21 +0000 (21:37 +0000)]
pt.c (instantiate_decl): Always instantiate static data members initialized in-class.

* pt.c (instantiate_decl): Always instantiate static data members
initialized in-class.

From-SVN: r37107

23 years agostring-inst.cc (basic_string<C>::npos): Explicitly instantiate it.
Mark Mitchell [Sat, 28 Oct 2000 21:28:44 +0000 (21:28 +0000)]
string-inst.cc (basic_string<C>::npos): Explicitly instantiate it.

* src/string-inst.cc (basic_string<C>::npos): Explicitly
instantiate it.

From-SVN: r37106

23 years agoUse dynamic branch prediction hint in more cases.
Bernd Schmidt [Sat, 28 Oct 2000 19:42:48 +0000 (19:42 +0000)]
Use dynamic branch prediction hint in more cases.

From-SVN: r37105

23 years agoBetter RTX_COSTS for ia64.
Bernd Schmidt [Sat, 28 Oct 2000 19:39:58 +0000 (19:39 +0000)]
Better RTX_COSTS for ia64.

From-SVN: r37104

23 years agoNever set reload_override_in for optional reloads.
Bernd Schmidt [Sat, 28 Oct 2000 19:36:04 +0000 (19:36 +0000)]
Never set reload_override_in for optional reloads.

From-SVN: r37103

23 years agoFix computation of goal_alternative_matched
Bernd Schmidt [Sat, 28 Oct 2000 19:33:09 +0000 (19:33 +0000)]
Fix computation of goal_alternative_matched

From-SVN: r37102

23 years ago*** empty log message ***
Neil Booth [Sat, 28 Oct 2000 18:10:41 +0000 (18:10 +0000)]
*** empty log message ***

From-SVN: r37101

23 years ago*** empty log message ***
Neil Booth [Sat, 28 Oct 2000 18:02:28 +0000 (18:02 +0000)]
*** empty log message ***

From-SVN: r37100

23 years ago19960224-2.c, [...]: Update tests for new diagnostic messages.
Neil Booth [Sat, 28 Oct 2000 18:01:40 +0000 (18:01 +0000)]
19960224-2.c, [...]: Update tests for new diagnostic messages.

* gcc.dg/cpp/19960224-2.c, 20000625-2.c, cxxcom2.c, directiv.c,
endif.c, if-4.c, if-5.c, if-mop.c, macsyntx.c, paste2.c, paste6.c,
paste8.c, redef2.c, strify2.c, strp1.c, tr-warn1.c, tr-warn3.c,
tr-warn6.c, undef1.c, undef2.c, widestr1.c: Update tests for
new diagnostic messages.

* gcc.dg/cpp/macro3.c: New tests.

From-SVN: r37099

23 years agoNew macro expander.
Neil Booth [Sat, 28 Oct 2000 17:59:06 +0000 (17:59 +0000)]
New macro expander.

2000-10-28  Neil Booth  <neilb@earthling.net>

New macro expander.

* cpplib.c (struct answer): New.
(struct if_stack): Use cpp_lexer_pos rather than line and col.
Rename cmacro mi_cmacro.
(struct directive, KANDR, STDC89, EXTENSION, COND, IF_COND, INCL,
IN_I): New directive and flags.
(skip_rest_of_line, check_eol, run_directive, glue_header_name,
parse_answer, parse_assertion, find_answer): New functions.
(parse_ifdef, detect_if_not_defined, validate_else): Remove.
(lex_macro_node): New function to replace parse_ifdef and
get_define_node.

(_cpp_handle_directive): New function, combines _cpp_check_directive
and _cpp_check_linemarker.

(do_define, do_undef, parse_include, do_include, do_import,
do_include_next, read_line_number, do_line, do_ident, do_pragma,
do_pragma_once, do_pragma_poison, do_pragma_dependency):
Update for new token getting interface.

(do_ifdef, do_ifndef, do_if, do_else, do_endif, push_conditional)
: Update for new multiple-include optimisation technique.
(do_elif): Don't forget to invalidate controlling macros.

(unwind_if_stack, cpp_defined, cpp_push_buffer, cpp_pop_buffer): Update.
(parse_assertion, parse_answer, find_answer, _cpp_test_assertion):
Functions to handle assertions with the new token interface.
(do_assert, do_unassert): Use them.

(cpp_define, _cpp_define_builtin, cpp_undef, cpp_assert, cpp_unassert):
Use run_directive.

(_cpp_init_stacks): Register directive names.  Don't register special
nodes.

* cpperror.c (print_containing_files, _cpp_begin_message): Update to
new position recording regime.
(cpp_ice, cpp_fatal, cpp_error, cpp_error_with_line, cpp_warning,
cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line,
cpp_pedwarn_with_file_and_line): Update for _cpp_begin_message changes.
(cpp_type2name): Move to cpplex.c.

* cppexp.c (parse_charconst): spec_nodes is no longer a pointer.
(parse_defined): Update to handle new multiple include optimisation
method.  Remove poisoned identifier warning.
(parse_assertion, TYPE_NAME): Delete.
(lex): Update for multiple include optimisation, removal of
CPP_DEFINED, to use _cpp_test_assertion for assertions and
cpp_token_as_text.
(_cpp_parse_expr): Update for MI optimisation, and to use op_as_text.
(op_as_text): New function, to wrap cpp_token_as_text.

* cppfiles.c (stack_include_file, _cpp_pop_file_buffer):
Update for MI optimisation.
(_cpp_execute_include): Take a token rather than 3 arguments.  Fix
segfault on diagnostic.
(_cpp_compare_file_date): Take a token rather than 3 args.
(cpp_read_file): Work correctly for zero-length files.

* cpphash.c (_cpp_init_macros, _cpp_cleanup_macros): Rename
_cpp_init_hashtable and _cpp_cleanup_hashtable.
(cpp_lookup): Place identifiers at front of identifier pool
for _cpp_lookup_with_hash.
(_cpp_lookup_with_hash): Require identifiers to be at the front of
the identifier pool.  Commit the memory if not already in the
hash table.

* cppinit.c (cpp_reader_init): Move cpp_init_completed test to top.
Initialise various members of cpp_reader, memory pools, and the
special nodes.
(cpp_printer_init): Delete.
(cpp_cleanup): Update.
(struct builtin, builtin_array, initialize_builtins): Update for new
hashnode definition and builtin handling.
(cpp_start_read, cpp_finish): Don't take or initialise a
printer.  Update.

* cpplib.h (cpp_printer, cpp_toklist, CPP_DEFINED, BOL,
PASTED, VAR_ARGS, BEG_OF_FILE, IN_DIRECTIVE, KNOWN_DIRECTIVE,
T_VOID, T_SPECLINE, T_DATE, T_FILE, T_BASE_FILE, T_INCLUDE_LEVEL,
T_TIME, T_STDC, T_OPERATOR, T_POISON, T_MACRO, T_ASSERTION): Delete.
(struct cpp_pool, struct cpp_macro, struct cpp_lexer_pos,
struct cpp_lookahead, CPP_DHASH, enum mi_state, enum mi_ind,
NO_EXPAND, VARARGS_FIRST, struct cpp_token_with_pos,
struct toklist, struct cpp_context, struct specnodes,
TOKEN_LOOKAHEAD, TOKEN_BUFFSIZE, NODE_OPERATOR, NODE_POISONED,
NODE_BUILTIN, NODE_DIAGNOSTIC, NT_VOID, NT_MACRO, NT_ASSERTION,
enum builtin_type, cpp_can_paste): New.
(struct cpp_token): Delete line and col members.
(struct cpp_buffer): New member output_lineno.
(struct lexer_state): Delete indented, in_lex_line, seen_dot.
Add va_args_ok, poisoned_ok, prevent_expansion, parsing_args.
(struct cpp_reader): New members lexer_pos, macro_pos, directive_pos,
ident_pool, temp_string_pool, macro_pool, argument_pool, string_pool,
base_context, context, directive, mi_state, mi_if_not_defined,
mi_lexed, mi_cmacro, mi_ind_cmacro, la_read, la_write, la_unused,
mlstring_pos, macro_buffer, macro_buffer_len.
Delete members mls_line, mls_column, token_list, potential_control_macro,
temp_tokens, temp_cap, temp_alloced, temp_used, first_directive_token,
context_cap, cur_context, no_expand_level, paste_level, contexts, args,
save_parameter_spellings, need_newline, .
Change type of date, time and spec_nodes members.
Change prototypes for include and ident callbacks.
(struct cpp_hashnode): Change type of name.  Remove union members
expansion and code.  Add members macro, operator and builtin.

(cpp_token_len, cpp_token_as_text, cpp_spell_token, cpp_start_read,
cpp_finish, cpp_avoid_paste, cpp_get_token, cpp_get_line,
cpp_get_output_line, cpp_macro_definition, cpp_start_lookahead,
cpp_stop_lookahead): New prototypes.
(cpp_printer_init, cpp_dump_definition): Delete prototypes.

(U_CHAR, U, ustrcmp, ustrncmp, ustrlen, uxstrdup, ustrchr, ufputs):
Move from cpphash.h.

* cpphash.h (U_CHAR, U, ustrcmp, ustrncmp, ustrlen, uxstrdup, ustrchr,
ufputs): Move to cpplib.h.
(enum spell_type, struct token_spelling, _cpp_token_spellings, TOKEN_SPELL,
TOKEN_NAME, struct answer, FREE_ANSWER, KANDR, STDC89, EXTENSION,
COND, EXPAND, INCL, COMMENTS, IN_I, struct directive, directive_handler,
struct spec_nodes, _cpp_digraph_spellings, _cpp_free_temp_tokens,
_cpp_init_input_buffer, _cpp_grow_token_buffer, _cpp_init_toklist,
_cpp_clear_toklist, _cpp_expand_token_space, _cpp_expand_name_space,
_cpp_equiv_tokens, _cpp_equiv_toklists, _cpp_process_directive,
_cpp_run_directive, _cpp_get_line, _cpp_get_raw_token, _cpp_glue_header_name,
_cpp_can_paste, _cpp_check_directive, _cpp_check_linemarker,
_cpp_parse_assertion, _cpp_find_answer): Delete.
(VALID_SIGN, ALIGN, POOL_FRONT, POOL_LIMIT, POOL_BASE, POOL_SIZE,
POOL_USED, POOL_COMMIT, struct cpp_chunk, _cpp_lex_token, _cpp_init_pool,
_cpp_free_pool, _cpp_pool_reserve, _cpp_pool_alloc, _cpp_next_chunk,
_cpp_lock_pool, _cpp_unlock_pool, _cpp_test_assertion,
_cpp_handle_directive, DSC): New.
(struct include_file): New member defined.

(DO_NOT_REREAD, _cpp_begin_message, _cpp_execute_include,
_cpp_compare_file_date): Update.
(_cpp_pop_context, _cpp_get_token, _cpp_free_lookaheads, _cpp_push_token): New.
(_cpp_init_macros, _cpp_cleanup_macros): Rename to _cpp_init_hashtable,
_cpp_cleanup_hashtable.

* Makefile.in: Remove cppoutput.c.

* cppoutput.c: Delete

* fixheader.c (read_scan_file): Update for new cpp_get_token
prototype.
(recognized_function): New argument LINE.

* scan-decls.c (skip_to_closing_brace, scan_decls): Update for
new cpp_get_token prototype.

* scan.h (recognized_function): Update prototype.

* po/POTFILES.in: Remove cppoutput.c.

From-SVN: r37098

23 years agoDaily bump.
Jeff Law [Sat, 28 Oct 2000 07:45:08 +0000 (01:45 -0600)]
Daily bump.

From-SVN: r37097

23 years agoc-typeck.c (check_init_type_bitfields): Remove.
Mark Mitchell [Sat, 28 Oct 2000 00:18:39 +0000 (00:18 +0000)]
c-typeck.c (check_init_type_bitfields): Remove.

* c-typeck.c (check_init_type_bitfields): Remove.
(constructor_incremental): Likewise.
(struct constructor_stack): Remove incremental bit.
(struct initializer_stack): Likewise.
(start_init): Don't play with constructor_incremental.
(finish_init): Likewise.
(really_start_incremental_init): Likewise.
(push_init_level): Likewise.
(pop_init_level): Likewise.
(output_init_level): Likewise.
(output_pending_init_elements): Likewise.

From-SVN: r37096

23 years agoc-pragma.c (handle_pragma_pack): Initialize align to -1.
Mike Coleman [Sat, 28 Oct 2000 00:04:11 +0000 (00:04 +0000)]
c-pragma.c (handle_pragma_pack): Initialize align to -1.

2000-10-21  Mike Coleman  <mcoleman2@kc.rr.com>

* c-pragma.c (handle_pragma_pack): Initialize align to -1.
Improve error messages.  Correct parsing of
#pragma pack(pop [,id]).  Do not check the user-supplied
alignment if we're popping.

* gcc.dg/pack-test-1.c: New test case.
* gcc.dg/pack-test-2.c: New test case.
* gcc.dg/pack-test-1.h: New file.

From-SVN: r37095

23 years ago* cpp.texi: Update.
Neil Booth [Fri, 27 Oct 2000 23:50:15 +0000 (23:50 +0000)]
* cpp.texi: Update.

From-SVN: r37094

23 years ago* invoke.texi: Document -mintel-syntax
Kelley Cook [Fri, 27 Oct 2000 23:40:00 +0000 (23:40 +0000)]
* invoke.texi: Document -mintel-syntax

From-SVN: r37093

23 years agoinvoke.texi: Document -frename-registers.
Richard Henderson [Fri, 27 Oct 2000 21:56:01 +0000 (14:56 -0700)]
invoke.texi: Document -frename-registers.

        * invoke.texi: Document -frename-registers.  Add it to -O3.
        * toplev.c (rest_of_compilation): Run regrename before ifcvt2.
        (enum dump_file_index, dump_file): Update order.
        (main): Set flag_rename_registers at -O3.

From-SVN: r37092

23 years agoalpha.h (enum reg_class): Add PV_REG.
Richard Henderson [Fri, 27 Oct 2000 21:30:52 +0000 (14:30 -0700)]
alpha.h (enum reg_class): Add PV_REG.

        * config/alpha/alpha.h (enum reg_class): Add PV_REG.
        (REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGNO_REG_CLASS): Update.
        (REG_CLASS_FROM_LETTER): Assign it to 'c'.
        * config/alpha/alpha.md (call_osf_1): Use it.
        (call_value_osf_1): Likewise.

From-SVN: r37091

23 years agoia64.c: Revert 10-23 patch.
Richard Henderson [Fri, 27 Oct 2000 21:27:10 +0000 (14:27 -0700)]
ia64.c: Revert 10-23 patch.

        * config/ia64/ia64.c: Revert 10-23 patch.
        (ia64_hard_regno_rename_ok): New.
        * config/ia64/ia64-protos.h: Declare it.
        * config/ia64/ia64.h (HARD_REGNO_RENAME_OK): Use it.

From-SVN: r37090

23 years agoregrename.c: Rewrite to handle multi-register modes and cond_exec instructions.
Bernd Schmidt [Fri, 27 Oct 2000 20:58:57 +0000 (20:58 +0000)]
regrename.c: Rewrite to handle multi-register modes and cond_exec instructions.

        * regrename.c: Rewrite to handle multi-register modes and
        cond_exec instructions.
        * Makefile.in (regrename.o): Update dependancies.
        * recog.h (struct operand_alternative): Add is_address.
        * recog.c (preprocess_constraints) [case 'p']: Set it.

Co-Authored-By: Richard Henderson <rth@redhat.com>
From-SVN: r37089

23 years agoconfigure.in: If not NO_MINUS_C_MINUS_O, substitute OUTPUT_OPTION with '-o $@'.
Zack Weinberg [Fri, 27 Oct 2000 20:22:28 +0000 (20:22 +0000)]
configure.in: If not NO_MINUS_C_MINUS_O, substitute OUTPUT_OPTION with '-o $@'.

* configure.in: If not NO_MINUS_C_MINUS_O, substitute
OUTPUT_OPTION with '-o $@'.  Make zlibdir, zlibinc relative to
top level.  Kill oldstyle_subdirs.  Do not include
$srcdir/$s/Makefile.in in all_lang_makefiles, but do include
$outputs.  Do not run configure.lang from config.status.
Rearrange warning-flag logic to correspond to what the
makefile wants.  Put special vax stage1 options in
@stage1_flags@ not @stage1_warn_cflags@.  Don't do anything
with extra_c_objs, extra_cxx_objs, or extra_cpp_objs.
(--enable-c-cpplib): AC_SUBST(maybe_cpplib) with "libcpp.a" if
switch is given, nothing otherwise.
* configure.lang: Delete.

        * Makefile.in: Expunge all traces of extra_c_objs,
        extra_cxx_objs, and extra_cpp_objs.  Set MAYBE_CPPLIB from
        @maybe_cpplib@. Add $(MAYBE_CPPLIB) to C_AND_OBJC_OBJS.  Set
        warning options via a three level scheme so that -pedantic and
        -Wtraditional are not used for non-C front ends: LOOSE_WARN,
        STRICT1_WARN, STRICT2_WARN -> $(@D)-warn, GCC_WARN_CFLAGS ->
        WARN_CFLAGS.  Distinguish STAGE1_CFLAGS from BOOT_CFLAGS.
Add -I$(@D) and -I$(srcdir)/$(@D) to INCLUDES.
Set OUTPUT_OPTION, ZLIB, ZLIBINC.  Do not set P,
        LANG_FLAGS_TO_PASS.  Add OUTPUT_OPTION to all object-file
        generation rules.  Wrap all rules that change the current
        directory in parentheses; pmake doesn't spawn a new shell for
        each command.  Expunge all references to $(P).  When one
        command depends on another and they're run all at once, use &&
        to separate them, not ;.  Add libgcc_s$(SHLIB_EXT) to files
        deleted on make clean.  Force OUTPUT_OPTION='-o $@' in stage2
        and beyond.

* cp/Make-lang.in, f/Make-lang.in, java/Make-lang.in,
objc/Make-lang.in: Wrap all rules that change the current
directory in parentheses.  Expunge all references to $(P).
When one command depends on another and they're run all at
once, use && to separate them, not ;.  Add OUTPUT_OPTION to
all object-file generation rules.  Delete obsolete variables.
Move all build rules here from the corresponding Makefile.in and
adapt to the new environment.

* cp/Makefile.in, f/Makefile.in, java/Makefile.in, objc/Makefile.in:
Delete.

* cp/config-lang.in, f/config-lang.in, java/config-lang.in:
Delete outputs= line.

From-SVN: r37088

23 years agocalls.c (expand_call): If sibcall_failure is set during pass 1, clear tail_call_insns...
Jakub Jelinek [Fri, 27 Oct 2000 19:49:53 +0000 (21:49 +0200)]
calls.c (expand_call): If sibcall_failure is set during pass 1, clear tail_call_insns as well.

* calls.c (expand_call): If sibcall_failure is set during pass 1,
clear tail_call_insns as well.

* g++.old-deja/g++.other/eh2.C: New test.

From-SVN: r37087

23 years agoAdd prototype to prevent compile time warning
Nick Clifton [Fri, 27 Oct 2000 18:40:59 +0000 (18:40 +0000)]
Add prototype to prevent compile time warning

From-SVN: r37086

23 years agoNew testcase.
Bernd Schmidt [Fri, 27 Oct 2000 12:52:16 +0000 (12:52 +0000)]
New testcase.

From-SVN: r37084

23 years ago[multiple changes]
Benjamin Kosnik [Fri, 27 Oct 2000 12:31:37 +0000 (12:31 +0000)]
[multiple changes]

2000-10-26  Benjamin Kosnik  <bkoz@redhat.com>

* include/c/bits/std_cmath.h: Fix double declarations in namespace std.

Clean up naming, consistency in "C" library autoconf testing.
* acinclude.m4 (GLIBCPP_CHECK_CTYPE): For consistency, change to
GLIBCPP_CHECK_CTYPE_SUPPORT.
(GLIBCPP_CHECK_STDLIB_SUPPORT): Add.
* aclocal.m4: Regenerate.
* configure.in: And here.
Add call to GLIBCPP_CHECK_STDLIB_SUPPORT.
* configure: Regenerate.

2000-10-26  David Edelsohn  <edelsohn@gnu.org>

* acinclude.m4 (GLIBCPP_CHECK_STDLIB_DECL_AND_LINKAGE_2): New macro.
(GLIBCPP_CHECK_MATH_SUPPORT): Use it to test for strtold.

From-SVN: r37083

23 years agoacinclude.m4 (GLIBCPP_CHECK_LINKER_FEATURES): Comment out --gc-sections stuff entirel...
Phil Edwards [Fri, 27 Oct 2000 12:29:42 +0000 (12:29 +0000)]
acinclude.m4 (GLIBCPP_CHECK_LINKER_FEATURES): Comment out --gc-sections stuff entirely to avoid misleading people.

2000-10-26  Phil Edwards  <pme@sources.redhat.com>
    David Edelsohn  <dje@watson.ibm.com>

* acinclude.m4 (GLIBCPP_CHECK_LINKER_FEATURES): Comment out
--gc-sections stuff entirely to avoid misleading people.
        (GLIBCPP_ENABLE_CSTDIO): Merge need_libio and need_xtra_libio.
        * libio/Makefile.am (LIBIO_SRCS,LIBIO_WSRCS,LIBIO_XTRA_SRCS):
Rearrange and merge.
        * libio/libio.h: Simplify, make fewer assumptions.  Define those
macros which must be defined.
        * config/os/solaris/solaris2.7/bits/os_defines.h: Simplify as a
result.

From-SVN: r37082

23 years agonatGregorianCalendar.cc (computeFields): Set the isSet__ array elements to true.
Warren Levy [Fri, 27 Oct 2000 11:53:53 +0000 (11:53 +0000)]
natGregorianCalendar.cc (computeFields): Set the isSet__ array elements to true.

* java/util/natGregorianCalendar.cc (computeFields): Set the isSet__
array elements to true.

From-SVN: r37081

23 years agoMakefile.am: Added locale files from Classpath.
Warren Levy [Fri, 27 Oct 2000 10:33:46 +0000 (10:33 +0000)]
Makefile.am: Added locale files from Classpath.

* Makefile.am: Added locale files from Classpath.
* Makefile.in: Rebuilt.
* gnu/java/locale/Calendar.java: New file.
* gnu/java/locale/Calendar_de.java: New file.
* gnu/java/locale/Calendar_en.java: New file.
* gnu/java/locale/Calendar_nl.java: New file.
* java/lang/ClassNotFoundException.java: Replaced with Classpath file.
* java/math/BigDecimal.java (intVal): Renamed from 'num' for
serialization compatibility.
(scale): Made private.
(serialVersionUID): New field.
* java/math/BigInteger.java (ival): Made transient.
(words): Made transient.
(bitCount): New serialization field.
(bitLength): Ditto.
(firstNonzeroByteNum): Ditto.
(lowestSetBit): Ditto.
(magnitude): Ditto.
(signum): Ditto.
(serialVersionUID): New field.
(readObject): New method.
(writeObject): New method.
* java/util/BitSet.java (serialVersionUID): New field.
* java/util/Calendar.java: Replaced with Classpath file.
* java/util/GregorianCalendar.java (GregorianCalendar): Pass result
of getDefault() for TimeZone or Locale instead of passing nulls.
* java/util/Locale.java (serialVersionUID): New field.
(writeObject): New method.
(readObject): New method.
* java/util/SimpleTimeZone.java: Replaced with Classpath file.

Serialization mods.

From-SVN: r37080

23 years agoDaily bump.
Jeff Law [Fri, 27 Oct 2000 07:45:11 +0000 (01:45 -0600)]
Daily bump.

From-SVN: r37079

23 years agoNew test.
Richard Henderson [Thu, 26 Oct 2000 23:24:31 +0000 (16:24 -0700)]
New test.

From-SVN: r37078

23 years agolabel2.C: Tweak to work with V3.
Mark Mitchell [Thu, 26 Oct 2000 23:17:35 +0000 (23:17 +0000)]
label2.C: Tweak to work with V3.

* g++.old-deja/g++.brendan/label2.C: Tweak to work with V3.
* g++.old-deja/g++.law/builtin1.C: Likewise.
* g++.old-deja/g++.law/ctors10.C: Likewise.
* g++.old-deja/g++.law/virtual3.C: Likewise.
* g++.old-deja/g++.mike/p658.C: Likewise.
* g++.old-deja/g++.other/sibcall1.C: Likewise.
* g++.old-deja/g++.other/vaarg2.C: Likewise.
* g++.old-deja/g++.robertl/eb124.C: Likewise.
* g++.old-deja/g++.robertl/eb44.C: Likewise.
* g++.old-deja/g++.robertl/eb77.C: Likewise.

* include/backward/streambuf.h: New file.

From-SVN: r37077

23 years agocalls.c (expand_call): Supress sibcall if we have a BLKmode return in registers.
Richard Henderson [Thu, 26 Oct 2000 23:15:26 +0000 (16:15 -0700)]
calls.c (expand_call): Supress sibcall if we have a BLKmode return in registers.

        * calls.c (expand_call): Supress sibcall if we have a
        BLKmode return in registers.

From-SVN: r37076

23 years agoia64.h (PREFERRED_RELOAD_CLASS): Force floating point constants into memory.
Bernd Schmidt [Thu, 26 Oct 2000 23:05:17 +0000 (23:05 +0000)]
ia64.h (PREFERRED_RELOAD_CLASS): Force floating point constants into memory.

        * ia64.h (PREFERRED_RELOAD_CLASS): Force floating point constants
        into memory.

From-SVN: r37075

23 years agoctype_inline.h (is): Use __OBJ_DATA directly.
David Edelsohn [Thu, 26 Oct 2000 18:41:49 +0000 (18:41 +0000)]
ctype_inline.h (is): Use __OBJ_DATA directly.

2000-10-26  David Edelsohn  <dje@watson.ibm.com>

* config/os/aix/bits/ctype_inline.h (is): Use __OBJ_DATA directly.
        * config/os/aix/bits/ctype_noninline.h (do_tolower): Fix typo.
        * config/os/aix/bits/os_defines.h: Add AIX defines.

From-SVN: r37074

23 years agoacinclude.m4 (GLIBCPP_ENABLE_LONG_DOUBLE): Remove.
Benjamin Kosnik [Thu, 26 Oct 2000 14:56:05 +0000 (14:56 +0000)]
acinclude.m4 (GLIBCPP_ENABLE_LONG_DOUBLE): Remove.

2000-10-26  Benjamin Kosnik  <bkoz@redhat.com>

* acinclude.m4 (GLIBCPP_ENABLE_LONG_DOUBLE): Remove.
* aclocal.m4: Regenerate.
* configure.in: Remove GLIBCPP_ENABLE_LONG_DOUBLE.
* configure: Regenerate.
* docs/configopts.html: Remove.
* src/complexl.cc: Revert.
* config.h.in: Remove.
* include/c_std/bits/std_cmath.h: Remove guards based on
_GLIBCPP_USE_LONG_DOUBLE.
* include/c/bits/std_cmath.h: Same. Format. Match c_std behavior
with respect to long double signatures.

* config/os/aix/bits/ctype_noninline.h (ctype): Remove throw
specification.
* config/os/newlib/bits/ctype_noninline.h (ctype): And here.
* config/os/solaris/solaris2.6/bits/ctype_noninline.h (ctype): Same.
* config/os/solaris/solaris2.5/bits/ctype_noninline.h (ctype): Same.
* config/os/generic/bits/ctype_noninline.h (ctype): Same.
* config/os/bsd/bits/ctype_noninline.h (ctype): Same.

From-SVN: r37073

23 years ago* gcc.c-torture/compile/20001024-1.c: New test.
Nathan Sidwell [Thu, 26 Oct 2000 09:52:24 +0000 (09:52 +0000)]
* gcc.c-torture/compile/20001024-1.c: New test.

From-SVN: r37072

23 years agotree.c (make_node, case 't'): Set alignment to that of char_type_node.
Nathan Sidwell [Thu, 26 Oct 2000 09:50:34 +0000 (09:50 +0000)]
tree.c (make_node, case 't'): Set alignment to that of char_type_node.

* tree.c (make_node, case 't'): Set alignment to that of
char_type_node.
* expr.c (move_by_pieces_ninsns): Abort if some length remains.

From-SVN: r37071

23 years agostd_valarray.h (valarray::valarray): Fix thinko.
Gabriel Dos Reis [Thu, 26 Oct 2000 08:49:10 +0000 (08:49 +0000)]
std_valarray.h (valarray::valarray): Fix thinko.

* include/bits/std_valarray.h (valarray::valarray): Fix thinko.
Use __valarray_copy_construct only where appropriate.

From-SVN: r37070

23 years agoDaily bump.
Jeff Law [Thu, 26 Oct 2000 07:45:07 +0000 (01:45 -0600)]
Daily bump.

From-SVN: r37069

23 years agoMakefile.in (site.exp): Define HAVE_LIBSTDCXX_V3.
Mark Mitchell [Thu, 26 Oct 2000 07:28:25 +0000 (07:28 +0000)]
Makefile.in (site.exp): Define HAVE_LIBSTDCXX_V3.

* Makefile.in (site.exp): Define HAVE_LIBSTDCXX_V3.
* configure.in (enable-libstdcxx-v3): Arrange to have
HAVE_LIBSTDCXX_V3 substituted into the output files.

* lib/g++.exp (g++_include_flags): Trust HAVE_LIBSTDCXX_V3
to tell us whether or not we are using V3.

* Makefile.in (check): Don't make mkcheck executable.
(check-install): Likewise.
* configure.in (AC_OUTPUT): Make mkcheck executable.
* mkcheck.in (top_srcdir): New variable.
(INC_PATH): Set the path to the backward and ext directories
correctly.

From-SVN: r37068

23 years agoerror.c (dump_function_decl): Print no space between `ptr-operator' the `type-specifi...
Gabriel Dos Reis [Thu, 26 Oct 2000 05:50:19 +0000 (05:50 +0000)]
error.c (dump_function_decl): Print no space between `ptr-operator' the `type-specifier' of the return type.

cp/
* error.c (dump_function_decl): Print no space between
`ptr-operator' the `type-specifier' of the return type.
(dump_type_prefix): Make sure we put space at the appropriate
place.

testuite/g++.old-deja/g++.pt/
* g++.old-deja/g++.pt/memtemp77.C (main): Adjust comparaison
operands.

From-SVN: r37067

23 years ago* gcc_build: Fix typos.
Mark Mitchell [Thu, 26 Oct 2000 01:18:12 +0000 (01:18 +0000)]
* gcc_build: Fix typos.

From-SVN: r37066

23 years agorecog.c (constrain_operands): Initialize which_alternative before no alternatives...
Richard Henderson [Thu, 26 Oct 2000 00:30:55 +0000 (17:30 -0700)]
recog.c (constrain_operands): Initialize which_alternative before no alternatives early exit.

        * recog.c (constrain_operands): Initialize which_alternative
        before no alternatives early exit.

From-SVN: r37065

23 years agocse.c (find_comparison_args): Check that we can reverse a comparison if needed before...
Richard Henderson [Thu, 26 Oct 2000 00:17:53 +0000 (17:17 -0700)]
cse.c (find_comparison_args): Check that we can reverse a comparison if needed before accepting the substitution.

        * cse.c (find_comparison_args): Check that we can reverse a
        comparison if needed before accepting the substitution.

From-SVN: r37064

23 years agolex.c (java_new_lexer): Initialize new fields.
Tom Tromey [Thu, 26 Oct 2000 00:01:46 +0000 (00:01 +0000)]
lex.c (java_new_lexer): Initialize new fields.

* lex.c (java_new_lexer): Initialize new fields.  Work around
broken iconv() implementations.
(java_read_char): Swap bytes if required.  Use fallback decoder if
required.
(byteswap_init, need_byteswap): New globals.
(java_destroy_lexer): Only close iconv handle if it is in use.
* lex.h (java_lexer): New fields read_anything, byte_swap,
use_fallback.
Made out_buffer unsigned.

From-SVN: r37063

23 years ago* reload.c (find_reloads_address_part): Kill rtx obstack hackery.
Richard Henderson [Wed, 25 Oct 2000 23:58:53 +0000 (16:58 -0700)]
* reload.c (find_reloads_address_part): Kill rtx obstack hackery.

From-SVN: r37062

23 years agosimplify-rtx.c (simplify_relational_operation): Sign extend low words before sign...
Richard Henderson [Wed, 25 Oct 2000 23:02:14 +0000 (16:02 -0700)]
simplify-rtx.c (simplify_relational_operation): Sign extend low words before sign extending to high words.

        * simplify-rtx.c (simplify_relational_operation): Sign extend
        low words before sign extending to high words.

From-SVN: r37061

23 years agoMakefile.am (GCJCOMPILE): Pass --tag=GCJ to libtool.
Bryce McKinlay [Wed, 25 Oct 2000 22:11:38 +0000 (22:11 +0000)]
Makefile.am (GCJCOMPILE): Pass --tag=GCJ to libtool.

2000-10-25  Bryce McKinlay  <bryce@albatross.co.nz>

* Makefile.am (GCJCOMPILE): Pass --tag=GCJ to libtool.
(core_java_source_files): Put java.lang, java.io, and java.util here.
(ordinary_java_source_files): Order so that core_java_source_files are
built first.
(java_source_files): Reorder so that special_java_source_files are
built first.
* configure.in: Don't pass -I flag to gcj.
* Makefile.in: Rebuilt.
* configure: Rebuilt.

From-SVN: r37060

23 years agoInclude config.h before system.h.
Nick Clifton [Wed, 25 Oct 2000 20:33:00 +0000 (20:33 +0000)]
Include config.h before system.h.

Force function epilogue to always be generated to work around epilogue
suppression bug in M*Core backend.

From-SVN: r37059

23 years agoconfigure.in: Invoke AC_PROG_CPP unconditionally before conditional feature tests.
Chris Demetriou [Wed, 25 Oct 2000 18:07:29 +0000 (18:07 +0000)]
configure.in: Invoke AC_PROG_CPP unconditionally before conditional feature tests.

2000-10-24  Chris Demetriou  <cgd@sibyte.com>

* configure.in: Invoke AC_PROG_CPP unconditionally before
conditional feature tests.

From-SVN: r37058

23 years agoMakefile.in: Rebuilt.
Tom Tromey [Wed, 25 Oct 2000 17:56:17 +0000 (17:56 +0000)]
Makefile.in: Rebuilt.

* Makefile.in: Rebuilt.
* Makefile.am (install-exec-hook): New target.

From-SVN: r37057

23 years agoc-decl.c (grokdeclarator): Move warning for qualified void return types with -pedanti...
Joseph Myers [Wed, 25 Oct 2000 17:45:44 +0000 (18:45 +0100)]
c-decl.c (grokdeclarator): Move warning for qualified void return types with -pedantic to when...

* c-decl.c (grokdeclarator): Move warning for qualified void
return types with -pedantic to when the function type is
constructed.  At -W, warn in general for qualified function return
types, except for volatile void.
* invoke.texi: Document this new warning at -W.

testsuite:
* gcc.dg/qual-return-1.c, gcc.dg/qual-return-2.c: New tests.

From-SVN: r37056

23 years agoi386.c (print_operand): Handle new 'A' formatting code.
Diego Novillo [Wed, 25 Oct 2000 17:26:27 +0000 (17:26 +0000)]
i386.c (print_operand): Handle new 'A' formatting code.

2000-10-23  Diego Novillo  <dnovillo@cygnus.com>

* i386.c (print_operand): Handle new 'A' formatting code.
387 opcodes need suffixes even with -mintel-syntax.
Check for explicit size override (codes 'b', 'w' and 'k').
(print_operand_address): Check if register prefix is needed when
emitting `ds' segment override.
* i386.h: Add comment about new 'A' formatting code.
* i386.md (jump and call patterns): Emit absolute references using %A.

From-SVN: r37055

23 years agocpp.texi: Update with implementation-defined behavior and internal limits.
Neil Booth [Wed, 25 Oct 2000 17:23:23 +0000 (17:23 +0000)]
cpp.texi: Update with implementation-defined behavior and internal limits.

        * cpp.texi: Update with implementation-defined behavior and
        internal limits.

From-SVN: r37054

23 years agoconfigure.in: Check for gconv.h.
Phil Edwards [Wed, 25 Oct 2000 16:54:47 +0000 (16:54 +0000)]
configure.in: Check for gconv.h.

2000-10-25  Phil Edwards  <pme@sources.redhat.com>

        * configure.in:  Check for gconv.h.
        * libio/wfileops.c:  Wrap gconv.h in HAVE_GCONV_H.

        * config/c_io_libio_codecvt.c:  Change __mbstate_t to __c_mbstate_t.
        * libio/_G_config.h:  And here.
        * libio/iofwide.c:  And here.
        * libio/libio.h:  And here.

        * config/os/solaris/solaris2.7/bits/ctype_noninline.h:  Remove
          exception specification to match declaration.
        * include/bits/locale_facets.tcc:  Include bits/std_clocale.h.

From-SVN: r37053

23 years agostor-layout.c (layout_type): If TYPE_ALIAS_SET was already set on the incomplete...
Jakub Jelinek [Wed, 25 Oct 2000 15:23:35 +0000 (17:23 +0200)]
stor-layout.c (layout_type): If TYPE_ALIAS_SET was already set on the incomplete type force it into alias set 0.

* stor-layout.c (layout_type): If TYPE_ALIAS_SET was already set on the
incomplete type force it into alias set 0.

* gcc.c-torture/execute/20001024-1.c: New test.

From-SVN: r37052

23 years agoconfigopts.html: Added documentation for the "--enable-version-specific-runtime-libs...
Mark Harig [Wed, 25 Oct 2000 14:41:16 +0000 (14:41 +0000)]
configopts.html: Added documentation for the "--enable-version-specific-runtime-libs" and...

2000-10-24   Mark Harig <mharig@landmark.com>

        * docs/configopts.html: Added documentation for the
        "--enable-version-specific-runtime-libs" and
        "--with-gxx-include-dir" configuration switches.

From-SVN: r37051

23 years agoacconfig.h: List _GLIBCPP_USE_THREADS.
Benjamin Kosnik [Wed, 25 Oct 2000 12:50:06 +0000 (12:50 +0000)]
acconfig.h: List _GLIBCPP_USE_THREADS.

2000-10-24  Phil Edwards  <pme@sources.redhat.com>

        * acconfig.h:  List _GLIBCPP_USE_THREADS.
        * acinclude.m4:  General formatting cleanup (tabs/spaces), typo
          correction, etc.  Add comments about following *real* changes
          where they are used.
          (GLIBCPP_ENABLE_C_MBCHAR):  New test...
          (GLIBCPP_CHECK_WCHAR_T_SUPPORT):  ...results used here.
          (GLIBCPP_ENABLE_CSTDIO):  Define need_wlibio iff wide characters
          are requested.
          (GLIBCPP_ENABLE_THREADS):  If threads are used, define new
          macro _GLIBCPP_USE_THREADS in c++config.h.
          (GLIBCPP_ENABLE_SHADOW):  For C_INCLUDE_DIR, change () to {} as
          this is used in both makefiles and shell scripts (mkcheck).
        * configure.in:  Call GLIBCPP_ENABLE_C_MBCHAR.

        * libio/_G_config.h:  Wrap _IO_MTSAFE_IO in _GLIBCPP_USE_THREADS.
        * config/c_io_libio.h:  In nonthreaded case, typedef __c_lock to
          something harmless, like int.

        * config/os/aix/bits/os_defines.h:  Guard with _GLIBCPP_OS_DEFINES,
          add comment/instructions.
        * config/os/bsd/bits/os_defines.h:  Ditto.
        * config/os/generic/bits/os_defines.h:  Ditto.
        * config/os/gnu-linux/bits/os_defines.h:  Ditto.
        * config/os/irix/bits/os_defines.h:  Ditto.
        * config/os/newlib/bits/os_defines.h:  Ditto.
        * config/os/solaris/solaris2.5/bits/os_defines.h:  Ditto.
        * config/os/solaris/solaris2.6/bits/os_defines.h:  Ditto.

        * mkcheck.in:  Limit the available heap size for testsuite
          binaries, initially at 2MB.

From-SVN: r37050

23 years agostl_pair.h (make_pair): Add LWG solution.
Benjamin Kosnik [Wed, 25 Oct 2000 12:48:34 +0000 (12:48 +0000)]
stl_pair.h (make_pair): Add LWG solution.

2000-10-24  Benjamin Kosnik  <bkoz@redhat.com>

        * include/bits/stl_pair.h (make_pair): Add LWG solution.

        * testsuite/21_strings/compare.cc (test01): Inject namespace std
into the mix.

* mkcheck.in (MAX_MEM_USAGE): Bump up to 3072. Strangely enough,
this works.

From-SVN: r37049

23 years agostd_bitset.h (_M_do_find_next): Fix typo.
Levente Farkas [Wed, 25 Oct 2000 12:47:45 +0000 (12:47 +0000)]
std_bitset.h (_M_do_find_next): Fix typo.

2000-10-24  Levente Farkas  <lfarkas@mindmaker.hu>

* include/bits/std_bitset.h (_M_do_find_next): Fix typo.

From-SVN: r37048

23 years agoThreadGroup.java (uncaughtException): Print thread name with stack dump.
Bryce McKinlay [Wed, 25 Oct 2000 08:11:47 +0000 (08:11 +0000)]
ThreadGroup.java (uncaughtException): Print thread name with stack dump.

        * java/lang/ThreadGroup.java (uncaughtException): Print thread name
        with stack dump.

From-SVN: r37047

23 years agoDaily bump.
Jeff Law [Wed, 25 Oct 2000 07:45:08 +0000 (01:45 -0600)]
Daily bump.

From-SVN: r37046

23 years agoparse.y (register_incomplete_type): Include JDEP_FIELD as a case where an enclosing...
Alexandre Petit-Bianco [Wed, 25 Oct 2000 05:47:28 +0000 (05:47 +0000)]
parse.y (register_incomplete_type): Include JDEP_FIELD as a case where an enclosing context can be set on the jdep.

2000-10-24  Alexandre Petit-Bianco  <apbianco@cygnus.com>

* parse.y (register_incomplete_type): Include JDEP_FIELD as a case
where an enclosing context can be set on the jdep.
(do_resolve_class): Fixed identation.

(http://gcc.gnu.org/ml/gcc-patches/2000-10/msg00824.html)

From-SVN: r37045

23 years agoalias.c: Include basic-block.h.
John Wehle [Wed, 25 Oct 2000 05:00:53 +0000 (05:00 +0000)]
alias.c: Include basic-block.h.

* alias.c: Include basic-block.h.
(loop_p): New function.
(mark_constant_function): Use it.
* Makefile.in (alias.o): Update dependencies.

From-SVN: r37044

23 years agofix secondary_reload typo from last patch
Aldy Hernandez [Wed, 25 Oct 2000 04:26:35 +0000 (04:26 +0000)]
fix secondary_reload typo from last patch

From-SVN: r37043

23 years agosecondary_reload_class: treat pseudos like memory
Aldy Hernandez [Wed, 25 Oct 2000 03:13:19 +0000 (03:13 +0000)]
secondary_reload_class: treat pseudos like memory

From-SVN: r37042

23 years agoFixes for C++ structure layout breakage.
Jim Wilson [Wed, 25 Oct 2000 01:30:25 +0000 (01:30 +0000)]
Fixes for C++ structure layout breakage.

* expmed.c (store_bit_field): Move integer pun code down after
code that calls emit_move_insn for entire register move.
* stor-layout.c (compute_record_mode): Revert Mar 25, Aug 18, and
Oct 20 changes.  Only store mode in TYPE_MODE if RECORD_TYPE.

From-SVN: r37041

23 years agortlanal.c (rtx_unstable_p, [...]): Don't consider pic register stable if PIC_OFFSET_T...
Richard Henderson [Tue, 24 Oct 2000 23:01:11 +0000 (16:01 -0700)]
rtlanal.c (rtx_unstable_p, [...]): Don't consider pic register stable if PIC_OFFSET_TABLE_REG_CALL_CLOBBERED.

        * rtlanal.c (rtx_unstable_p, rtx_varies_p): Don't consider pic
        register stable if PIC_OFFSET_TABLE_REG_CALL_CLOBBERED.

From-SVN: r37040

23 years agodo not propagate constants into jump_insn's for machines with CC0, more than once
Aldy Hernandez [Tue, 24 Oct 2000 22:49:39 +0000 (22:49 +0000)]
do not propagate constants into jump_insn's for machines with CC0, more than once

From-SVN: r37039

23 years agotreat pseudos just like memory
Richard Henderson [Tue, 24 Oct 2000 22:45:46 +0000 (22:45 +0000)]
treat pseudos just like memory

From-SVN: r37038

23 years agocombine.c (distribute_notes): Discard REG_LIBCALL and REG_RETVAL when deleting libcal...
Alexandre Oliva [Tue, 24 Oct 2000 20:24:03 +0000 (20:24 +0000)]
combine.c (distribute_notes): Discard REG_LIBCALL and REG_RETVAL when deleting libcall sequence collapsed to...

* combine.c (distribute_notes): Discard REG_LIBCALL and REG_RETVAL
when deleting libcall sequence collapsed to a single instruction.

From-SVN: r37037

23 years agoexpr.c (do_store_flag): Don't crash if either side of a comparison is error_mark_node.
Andrew Haley [Tue, 24 Oct 2000 20:06:13 +0000 (20:06 +0000)]
expr.c (do_store_flag): Don't crash if either side of a comparison is error_mark_node.

2000-10-24  Andrew Haley  <aph@cygnus.co.uk>

        * expr.c (do_store_flag): Don't crash if either side of a
        comparison is error_mark_node.

From-SVN: r37036

23 years agocompare.cc (test01): Add using declarations.
Benjamin Kosnik [Tue, 24 Oct 2000 17:00:59 +0000 (17:00 +0000)]
compare.cc (test01): Add using declarations.

2000-10-23  Benjamin Kosnik  <bkoz@redhat.com>

* testsuite/21_strings/compare.cc (test01): Add using declarations.

* include/c_std/bits/std_cerrno.h: And here.
* include/c_std/bits/std_cassert.h: Tweaks.

* mkcheck.in: Simplify.

* acinclude.m4 (GLIBCPP_ENABLE_LONG_DOUBLE): Simplify.
(GLIBCPP_ENABLE_LONG_LONG): Same.
* aclocal.m4: Regenerate.

* src/Makefile.am (c_shadow_headers): Add features.h,
bits/wrap_features.h.
* src/Makefile.in: Regenerate.
* include/c_std/features.h: New file.
* include/c_std/bits/wrap_features.h (_CPP_WRAP_FEATURES_H): New
file. Need to have c++config.h included before this file so
_ISOC99_SOURCE around.

* include/c_std/sys/cdefs.h: Hack.
* include/c_std/stdlib.h: Same, use c++config.h.
* include/c_std/bits/std_cstdlib.h: Use _GLIBCPP_HAVE_STRTOLD.

* include/c_std/bits/std_cassert.h: Fix.
* include/c_std/bits/std_cerrno.h: Make consistent.

* include/c_std/bits/std_csetjmp.h (setjmp): Unscope global
declaration from ::_C_legacy to _C_legacy.

* include/c_std/bits/std_cstdio.h: same with printf.
* include/c_std/stdio.h: And here.

* include/c_std/bits/std_cstdlib.h: abort, exit comment.
* include/c_std/stdlib.h: Same here.

From-SVN: r37035

23 years agocompare.cc (test01): Add using declarations.
Benjamin Kosnik [Tue, 24 Oct 2000 17:00:07 +0000 (17:00 +0000)]
compare.cc (test01): Add using declarations.

2000-10-23  Benjamin Kosnik  <bkoz@redhat.com>

* testsuite/21_strings/compare.cc (test01): Add using declarations.

* include/c_std/bits/std_cerrno.h: And here.
* include/c_std/bits/std_cassert.h: Tweaks.

* mkcheck.in: Simplify.

* acinclude.m4 (GLIBCPP_ENABLE_LONG_DOUBLE): Simplify.
(GLIBCPP_ENABLE_LONG_LONG): Same.
* aclocal.m4: Regenerate.

* src/Makefile.am (c_shadow_headers): Add features.h,
bits/wrap_features.h.
* src/Makefile.in: Regenerate.
* include/c_std/features.h: New file.
* include/c_std/bits/wrap_features.h (_CPP_WRAP_FEATURES_H): New
file. Need to have c++config.h included before this file so
_ISOC99_SOURCE around.

* include/c_std/sys/cdefs.h: Hack.
* include/c_std/stdlib.h: Same, use c++config.h.
* include/c_std/bits/std_cstdlib.h: Use _GLIBCPP_HAVE_STRTOLD.

* include/c_std/bits/std_cassert.h: Fix.
* include/c_std/bits/std_cerrno.h: Make consistent.

* include/c_std/bits/std_csetjmp.h (setjmp): Unscope global
declaration from ::_C_legacy to _C_legacy.

* include/c_std/bits/std_cstdio.h: same with printf.
* include/c_std/stdio.h: And here.

* include/c_std/bits/std_cstdlib.h: abort, exit comment.
* include/c_std/stdlib.h: Same here.

From-SVN: r37034

23 years agosibcall.c (purge_mem_unchanging_flag): New function.
Jakub Jelinek [Tue, 24 Oct 2000 11:25:50 +0000 (13:25 +0200)]
sibcall.c (purge_mem_unchanging_flag): New function.

* sibcall.c (purge_mem_unchanging_flag): New function.
(optimize_sibling_and_tail_recursive_calls): Call it.

* g++.old-deja/g++.other/sibcall1.C: New test.

From-SVN: r37033

23 years agoEventObject.java: Merged from classpath.
Bryce McKinlay [Tue, 24 Oct 2000 10:53:56 +0000 (11:53 +0100)]
EventObject.java: Merged from classpath.

2000-10-24  Bryce McKinlay  <bryce@albatross.co.nz>

* java/util/EventObject.java: Merged from classpath.

From-SVN: r37032

23 years agoDaily bump.
Jeff Law [Tue, 24 Oct 2000 07:45:07 +0000 (01:45 -0600)]
Daily bump.

From-SVN: r37031

23 years agoMakefile.in (check-po): New target for doing checks in the po subdir if all languages...
Philipp Thomas [Tue, 24 Oct 2000 04:00:07 +0000 (04:00 +0000)]
Makefile.in (check-po): New target for doing checks in the po subdir if all languages configured.

2000-10-24  Philipp Thomas  <pthomas@suse.de>

* Makefile.in (check-po): New target for doing checks in the po
subdir if all languages configured.
(CHECK_TARGETS): Add @CHECK_PO@, replaced with check-po via
configure if NLS is enabled.
* configure.in: If NLS is enabled, substitute CHECK_PO by check-po,
otherwise leave empty.
* configure: Regenerate.

From-SVN: r37030

23 years agoia64.c (ia64_expand_prologue): Mark extra output registers as fixed.
Richard Henderson [Tue, 24 Oct 2000 00:26:12 +0000 (17:26 -0700)]
ia64.c (ia64_expand_prologue): Mark extra output registers as fixed.

        * config/ia64/ia64.c (ia64_expand_prologue): Mark extra
        output registers as fixed.
        (ia64_function_epilogue): Undo output fixation.

From-SVN: r37029

23 years agoalpha.md: Add names for all unnamed insns; use define_insn_and_split in some obvious...
Richard Henderson [Tue, 24 Oct 2000 00:06:18 +0000 (17:06 -0700)]
alpha.md: Add names for all unnamed insns; use define_insn_and_split in some obvious places.

        * config/alpha/alpha.md: Add names for all unnamed insns; use
        define_insn_and_split in some obvious places.
        (lda): Remove.
        (zero_extendqihi2): Use an expander w/ nonimmediate_operand for BWX.
        (zero_extendqisi2, zero_extendqidi2): Likewise.
        (zero_extendhisi2, zero_extendhidi2): Likewise.
        (abs splitters): Fix match_scratch operand number.
        (bcc_reverse): Swap pc & label instead of non-canonical compare.

From-SVN: r37028

23 years agoFix Turbo's LPRng compilation failure due to assembler errors.
Jim Wilson [Mon, 23 Oct 2000 23:38:39 +0000 (23:38 +0000)]
Fix Turbo's LPRng compilation failure due to assembler errors.

* ia64.c (ia64_print_operand, case 'r'): Correct comment.  Handle
CONST_INT.
* ia64.md (cmpsi_adjusted): Use %r3.
(cmpdi_adjusted): Likewise.

From-SVN: r37025