]> gcc.gnu.org Git - gcc.git/log
gcc.git
23 years agoAdd support for Java demangling under the v3 ABI:
Bryce McKinlay [Fri, 2 Feb 2001 00:27:39 +0000 (00:27 +0000)]
Add support for Java demangling under the v3 ABI:

* cp-demangle.c (NAMESPACE_SEPARATOR): New define.
(struct demangling_def): Add `style' field.
(demangling_new): New parameter `style'. Set it in demangling_t.
(demangle_prefix): Use NAMESPACE_SEPARATOR.
(demangle_type_ptr): Don't emit pointer symbol if doing Java output.
(cp_demangle): New parameter `style'. Pass it to demangling_new().
(main): Call cp_demangle with extra parameter.
(java_demangle_v3): New function.
(java_builtin_type_names): New. Table of primitive type names used
for Java demangling.
(demangle_builtin_type): Look up in java_builtin_type_names if doing
Java output.
* cplus-dem.c (cplus_demangle): Use java_demangle_v3 to do Java
demangling.
(long_options): Remove obsolete `java' option.
(main): Remove explicit handling of `java' option. Instead, pass style
parameter in cplus_demangle flags as gdb does.
* testsuite/demangle.expected: Add some Java test cases.

From-SVN: r39399

23 years agojvgenmain.c (class_mangling_suffix): Remove unused string.
Bryce McKinlay [Fri, 2 Feb 2001 00:15:43 +0000 (00:15 +0000)]
jvgenmain.c (class_mangling_suffix): Remove unused string.

* jvgenmain.c (class_mangling_suffix): Remove unused string.
(error): Remove unused function.
(main): Don't use "__attribute__ alias" on generated class symbol.

From-SVN: r39397

23 years agocrt1.asm (main_k): Modified so that start calls ___setup_argv_and_call_main.
Alexandre Oliva [Thu, 1 Feb 2001 21:34:26 +0000 (21:34 +0000)]
crt1.asm (main_k): Modified so that start calls ___setup_argv_and_call_main.

* config/sh/crt1.asm (main_k): Modified so that start calls
___setup_argv_and_call_main.

From-SVN: r39396

23 years agoconfigure.in (toplevel_srcdir, auxdir): Set.
Alexandre Oliva [Thu, 1 Feb 2001 21:08:05 +0000 (21:08 +0000)]
configure.in (toplevel_srcdir, auxdir): Set.

* configure.in (toplevel_srcdir, auxdir): Set.
* acinclude.m4 (glibcpp_basedir): Set based on auxdir.
* aclocal.m4, configure, Makefile.in: Rebuilt.
* libio/Makefile.in, math/Makefile.in, src/Makefile.in: Likewise.
* libsupc++-v3/Makefile.am (INCLUDES): Use toplevel_srcdir.
* libsupc++-v3/Makefile.in: Rebuilt.
* libsupc++-v3/configure.in, libsupc++-v3/configure: Removed.
* libsupc++-v3/aclocal.m4, libsupc++-v3/config.h.in: Likewise.

From-SVN: r39395

23 years ago* gcc.dg/cpp/avoidpaste2.c: New tests.
Neil Booth [Thu, 1 Feb 2001 19:15:06 +0000 (19:15 +0000)]
* gcc.dg/cpp/avoidpaste2.c: New tests.

From-SVN: r39394

23 years agocpphash.h (struct cpp_buffer): Move saved_flags from cpp_reader.
Neil Booth [Thu, 1 Feb 2001 19:13:53 +0000 (19:13 +0000)]
cpphash.h (struct cpp_buffer): Move saved_flags from cpp_reader.

        * cpphash.h (struct cpp_buffer): Move saved_flags from cpp_reader.
        * cpplex.c (_cpp_lex_token): New token picks up the saved flags,
        and AVOID_LPASTE is cleared on meeting an unescaped newline.
        * cppmacro.c (builtin_macro): Set builtin flags here.
        (paste_all_tokens): Preserve AVOID_LPASTE on pasted token.
        (replace_args): Clarify intent.
        (cpp_get_token): Macro expansion tokens get the saved flags.
        Update.
        * cppmain.c (scan_buffer): Remove now-redundant print.printed
        check.

From-SVN: r39393

23 years agoiris6.h (SUPPORTS_INIT_PRIORITY): Reverse change of 2001-Jan-29.
Jeffrey Oldham [Thu, 1 Feb 2001 18:26:40 +0000 (18:26 +0000)]
iris6.h (SUPPORTS_INIT_PRIORITY): Reverse change of 2001-Jan-29.

2001-02-01  Jeffrey Oldham  <oldham@codesourcery.com>

* config/mips/iris6.h (SUPPORTS_INIT_PRIORITY): Reverse change of
2001-Jan-29.

From-SVN: r39392

23 years agobuiltins.c (expand_builtin_alloca): allocate_dynamic_stack_space returns Pmode pseudo...
Richard Kenner [Thu, 1 Feb 2001 12:29:18 +0000 (12:29 +0000)]
builtins.c (expand_builtin_alloca): allocate_dynamic_stack_space returns Pmode pseudo, but we need ptr_mode.

* builtins.c (expand_builtin_alloca): allocate_dynamic_stack_space
returns Pmode pseudo, but we need ptr_mode.
* explow.c (allocate_dynamic_stack_space): Use plus_constant.
Remove bogus conversions; use HOST_WIDE_INT for size.
Don't use TARGET if wrong mode.

From-SVN: r39390

23 years agoi386.c (ix86_compute_frame_size): Allow stack_alignment_needed to be non-default...
Richard Kenner [Thu, 1 Feb 2001 12:23:19 +0000 (12:23 +0000)]
i386.c (ix86_compute_frame_size): Allow stack_alignment_needed to be non-default even if size is zero.

* config/i386/i386.c (ix86_compute_frame_size): Allow
stack_alignment_needed to be non-default even if size is zero.

From-SVN: r39389

23 years agojcf-parse.c (init_jcf_parse): Added cast to ggc_add_root's last argument.
Alexandre Petit-Bianco [Thu, 1 Feb 2001 10:35:50 +0000 (10:35 +0000)]
jcf-parse.c (init_jcf_parse): Added cast to ggc_add_root's last argument.

2001-01-30  Alexandre Petit-Bianco  <apbianco@cygnus.com>

* jcf-parse.c (init_jcf_parse): Added cast to ggc_add_root's last
argument.
* parse.y (finish_method_declaration): Code accounting for WFLed
method DECL_NAMEs deleted.
(check_abstract_method_definitions): Likewise.
(resolve_type_during_patch): Layout resolved type.
* typeck.c (lookup_do): Removed unused local.

(http://gcc.gnu.org/ml/gcc-patches/2001-02/msg00005.html)

From-SVN: r39388

23 years agoDaily bump.
Jeff Law [Thu, 1 Feb 2001 08:45:07 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r39387

23 years ago(hppa_init_pic_save): Emit the pic offset table reg save after last_parm_insn.
Alan Modra [Thu, 1 Feb 2001 04:51:24 +0000 (04:51 +0000)]
(hppa_init_pic_save): Emit the pic offset table reg save after last_parm_insn.

        * (hppa_init_pic_save): Emit the pic offset table
        reg save after last_parm_insn.
        * pa.c (hppa_init_pic_save): New function.
        * pa.h (hppa_init_pic_save): Declare.
        * pa.md (call, call_value, sibcall, sibcall_value): Use
        the above instead of duplicated code.

From-SVN: r39386

23 years agopa.c (hppa_encode_label): Correct size of alloca buffer so we don't overrun it.
Alan Modra [Thu, 1 Feb 2001 01:11:28 +0000 (01:11 +0000)]
pa.c (hppa_encode_label): Correct size of alloca buffer so we don't overrun it.

        * pa.c (hppa_encode_label): Correct size of alloca buffer
        so we don't overrun it.  Correct leading `*' case.
        * pa.h (STRIP_NAME_ENCODING): Simplify now that we don't
        need to handle `*@'.
        (FUNCTION_NAME_P): Likewise.

From-SVN: r39385

23 years ago* config.gcc (alpha-osf5): Use float-i128.h.
Richard Henderson [Wed, 31 Jan 2001 20:50:31 +0000 (12:50 -0800)]
* config.gcc (alpha-osf5): Use float-i128.h.

From-SVN: r39384

23 years agofloat-i128.h (FLT_EVAL_METHOD, [...]): Define.
Richard Henderson [Wed, 31 Jan 2001 19:49:00 +0000 (11:49 -0800)]
float-i128.h (FLT_EVAL_METHOD, [...]): Define.

        * config/float-i128.h (FLT_EVAL_METHOD, DECIMAL_DIG): Define.
        * config/float-i32.h: Likewise.
        * config/float-i64.h: Likewise.
        * config/float-sh.h: Likewise.
        * config/float-sparc.h: Likewise.

From-SVN: r39383

23 years agooops, wrong month.
DJ Delorie [Wed, 31 Jan 2001 19:13:44 +0000 (14:13 -0500)]
oops, wrong month.

From-SVN: r39382

23 years agoexpmed.c (extract_bit_field): allow non-integral modes if we want to extract a whole...
DJ Delorie [Wed, 31 Jan 2001 19:05:49 +0000 (14:05 -0500)]
expmed.c (extract_bit_field): allow non-integral modes if we want to extract a whole register from itself.

* expmed.c (extract_bit_field): allow non-integral modes if we
want to extract a whole register from itself.

From-SVN: r39381

23 years agoc-typeck.c (set_init_index): If first is equal to last, assume as if it was not a...
Jakub Jelinek [Wed, 31 Jan 2001 17:38:11 +0000 (18:38 +0100)]
c-typeck.c (set_init_index): If first is equal to last, assume as if it was not a range at all.

* c-typeck.c (set_init_index): If first is equal to last, assume as
if it was not a range at all.

* gcc.dg/gnu99-init-1.c: Add test for [0 ... 0] range.

From-SVN: r39380

23 years agoMakefile.in: Rebuilt.
Tom Tromey [Wed, 31 Jan 2001 17:12:25 +0000 (17:12 +0000)]
Makefile.in: Rebuilt.

* Makefile.in: Rebuilt.
* Makefile.am (LTCXXCOMPILE): New macro.

From-SVN: r39379

23 years agoc99-float-1.c: Back out "XFAIL FLT_EVAL_METHOD and DECIMAL_DIG cases for Irix."
Jeffrey D. Oldham [Wed, 31 Jan 2001 16:16:42 +0000 (16:16 +0000)]
c99-float-1.c: Back out "XFAIL FLT_EVAL_METHOD and DECIMAL_DIG cases for Irix."

2001-01-31  Jeffrey Oldham  <oldham@codesourcery.com>

* gcc.dg/c99-float-1.c: Back out "XFAIL FLT_EVAL_METHOD and
DECIMAL_DIG cases for Irix."

From-SVN: r39378

23 years agoc99-float-1.c: Back out "XFAIL FLT_EVAL_METHOD and DECIMAL_DIG cases for Irix."
Jeffrey D. Oldham [Wed, 31 Jan 2001 16:07:13 +0000 (16:07 +0000)]
c99-float-1.c: Back out "XFAIL FLT_EVAL_METHOD and DECIMAL_DIG cases for Irix."

2001-01-31  Jeffrey Oldham  <oldham@codesourcery.com>

* gcc.dg/c99-float-1.c: Back out "XFAIL FLT_EVAL_METHOD and
DECIMAL_DIG cases for Irix."

From-SVN: r39377

23 years agoUpate comment
Richard Kenner [Wed, 31 Jan 2001 14:44:15 +0000 (09:44 -0500)]
Upate comment

From-SVN: r39376

23 years agoInclude tm.h, not hconfig.h
Alexandre Oliva [Wed, 31 Jan 2001 13:45:50 +0000 (13:45 +0000)]
Include tm.h, not hconfig.h

From-SVN: r39375

23 years ago* gcc.c-torture/execute/920302-1.c: Cast 0 to pointer.
J"orn Rennecke [Wed, 31 Jan 2001 12:25:44 +0000 (12:25 +0000)]
* gcc.c-torture/execute/920302-1.c: Cast 0 to pointer.

From-SVN: r39374

23 years agofp-bit.c: Include hconfig.h
Alexandre Oliva [Wed, 31 Jan 2001 11:04:33 +0000 (11:04 +0000)]
fp-bit.c: Include hconfig.h

* config/fp-bit.c: Include hconfig.h
(float_to_si): Don't assume SImode is 32-bits wide.
(float_to_usi): Likewise.

From-SVN: r39373

23 years agoc-parse.in (structsp): Pedwarn when "enum foo" refers to an incomplete type.
Joseph Myers [Wed, 31 Jan 2001 10:24:40 +0000 (10:24 +0000)]
c-parse.in (structsp): Pedwarn when "enum foo" refers to an incomplete type.

* c-parse.in (structsp): Pedwarn when "enum foo" refers to an
incomplete type.
(typename): Call pending_xref_error after parsing typed_typespecs.
* c-decl.c (lookup_tag): Give error immediately rather than
leaving it pending if the tag of the wrong type is in the same
binding level.
(xref_tag): Don't pedwarn for forward declarations of enum types
here.
* gcc.texi (Actual Bugs): Remove entry for misuse of struct, union
and enum tags.

testsuite:
* gcc.dg/c99-tag-1.c: New test.

From-SVN: r39372

23 years ago* config/float-sparc.h (LDBL_MAX) [sparc32]: Fix typo.
Alexandre Oliva [Wed, 31 Jan 2001 09:27:12 +0000 (09:27 +0000)]
* config/float-sparc.h (LDBL_MAX) [sparc32]: Fix typo.

From-SVN: r39371

23 years agoDaily bump.
Jeff Law [Wed, 31 Jan 2001 08:45:11 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r39370

23 years ago* gcc.dg/cpp/tr-warn1.c: Add tests.
Neil Booth [Wed, 31 Jan 2001 07:57:12 +0000 (07:57 +0000)]
* gcc.dg/cpp/tr-warn1.c: Add tests.

From-SVN: r39369

23 years agocpplib.c (T_ELIF): Move to STDC89, not that it matters.
Neil Booth [Wed, 31 Jan 2001 07:56:07 +0000 (07:56 +0000)]
cpplib.c (T_ELIF): Move to STDC89, not that it matters.

        * cpplib.c (T_ELIF): Move to STDC89, not that it matters.
        (_cpp_handle_directive): Suggest not using #elif with -Wtraditional.

From-SVN: r39368

23 years agoavoidpaste1.c: Update.
Neil Booth [Wed, 31 Jan 2001 07:50:11 +0000 (07:50 +0000)]
avoidpaste1.c: Update.

        * gcc.dg/cpp/avoidpaste1.c: Update.
        * gcc.dg/cpp/paste4.c: Update.

From-SVN: r39367

23 years agocpphash.h (struct cpp_reader): New saved_flags.
Neil Booth [Wed, 31 Jan 2001 07:48:54 +0000 (07:48 +0000)]
cpphash.h (struct cpp_reader): New saved_flags.

        * cpphash.h (struct cpp_reader): New saved_flags.
        * cppmacro.c (cpp_get_token): Use saved_flags to remember
        to avoid a paste after a pasted token.

From-SVN: r39366

23 years agolibgcc2.h (Wtype_MAX, Wtype_MIN): Define.
Alexandre Oliva [Wed, 31 Jan 2001 03:53:32 +0000 (03:53 +0000)]
libgcc2.h (Wtype_MAX, Wtype_MIN): Define.

* libgcc2.h (Wtype_MAX, Wtype_MIN): Define.
* libgcc2.c (__fixunssfSI, __fixunsdfSI, __fixunsxfSI): Use
Wtype_MIN instead of LONG_MIN.

From-SVN: r39365

23 years agoForgot to change this file.
Jeffrey D. Oldham [Wed, 31 Jan 2001 02:36:58 +0000 (02:36 +0000)]
Forgot to change this file.

From-SVN: r39363

23 years agofixincl.tpl: Add 2001 to copyright.
Jeffrey D. Oldham [Wed, 31 Jan 2001 02:35:49 +0000 (02:35 +0000)]
fixincl.tpl: Add 2001 to copyright.

2001-01-30  Jeffrey Oldham  <oldham@codesourcery.com>

        * fixinc/fixincl.tpl: Add 2001 to copyright.  Change name of
        README file.
        * fixinc/fixincl.x: Regenerated.
        * fixinc/inclhack.def (irix_limits_const): New definition to
        convert "const" to "__const" in limits.h.

From-SVN: r39362

23 years agogenfixes (AG): Fix "autogen4" thinko.
Jeffrey Oldham [Wed, 31 Jan 2001 02:27:15 +0000 (02:27 +0000)]
genfixes (AG): Fix "autogen4" thinko.

2001-01-30  Jeffrey Oldham  <oldham@codesourcery.com>

* fixinc/genfixes (AG): Fix "autogen4" thinko.

From-SVN: r39361

23 years agoc99-float-1.c: XFAIL FLT_EVAL_METHOD and DECIMAL_DIG cases for Irix.
Jeffrey Oldham [Wed, 31 Jan 2001 02:20:34 +0000 (02:20 +0000)]
c99-float-1.c: XFAIL FLT_EVAL_METHOD and DECIMAL_DIG cases for Irix.

2001-01-30  Jeffrey Oldham  <oldham@codesourcery.com>

* gcc.dg/c99-float-1.c: XFAIL FLT_EVAL_METHOD and DECIMAL_DIG
cases for Irix.

From-SVN: r39360

23 years agoMakefile.in.in (distclean): Also remove *.gmo during `make distclean`.
Gerald Pfeifer [Wed, 31 Jan 2001 01:30:40 +0000 (02:30 +0100)]
Makefile.in.in (distclean): Also remove *.gmo during `make distclean`.

* Makefile.in.in (distclean): Also remove *.gmo during `make
distclean`.

From-SVN: r39359

23 years agoregmove.c (try_auto_increment): Change REG_DEAD into REG_UNUSED when register dies...
Herman A.J. ten Brugge [Wed, 31 Jan 2001 00:20:44 +0000 (01:20 +0100)]
regmove.c (try_auto_increment): Change REG_DEAD into REG_UNUSED when register dies in the insn.

        * regmove.c (try_auto_increment): Change REG_DEAD into REG_UNUSED
        when register dies in the insn.

From-SVN: r39358

23 years ago* g++.old-deja/g++.other/inline19.C: New test.
Gerald Pfeifer [Wed, 31 Jan 2001 00:08:44 +0000 (00:08 +0000)]
* g++.old-deja/g++.other/inline19.C: New test.

From-SVN: r39357

23 years ago* diagnostic.c (fatal): Fix word wrap.
Neil Booth [Tue, 30 Jan 2001 23:47:33 +0000 (23:47 +0000)]
* diagnostic.c (fatal): Fix word wrap.

From-SVN: r39356

23 years agocombine.c (try_combine): Fix SUBREG setting for HOST_BITS_PER_WIDE_INT >= 2 * BITS_PE...
Alexandre Oliva [Tue, 30 Jan 2001 22:27:44 +0000 (22:27 +0000)]
combine.c (try_combine): Fix SUBREG setting for HOST_BITS_PER_WIDE_INT >= 2 * BITS_PER_WORD.

* combine.c (try_combine): Fix SUBREG setting for
HOST_BITS_PER_WIDE_INT >= 2 * BITS_PER_WORD.

From-SVN: r39355

23 years ago2001-01-26 Andrew Haley <aph@redhat.com>
Andrew Haley [Tue, 30 Jan 2001 21:00:22 +0000 (21:00 +0000)]
2001-01-26  Andrew Haley  <aph@redhat.com>

        (INIT_FPE): Use a direct system call to set the handler.

From-SVN: r39354

23 years agojump.c (comparison_dominates_p): Don't try to handle UNKNOWN comparison codes.
Franz Sirl [Tue, 30 Jan 2001 19:34:41 +0000 (19:34 +0000)]
jump.c (comparison_dominates_p): Don't try to handle UNKNOWN comparison codes.

        2001-01-30  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>

        * jump.c (comparison_dominates_p): Don't try to handle UNKNOWN
        comparison codes.

From-SVN: r39353

23 years agoc-decl.c (c_expand_body): Check TYPE_SIZE_UNIT (ret_type) is not NULL.
Neil Booth [Tue, 30 Jan 2001 19:19:40 +0000 (19:19 +0000)]
c-decl.c (c_expand_body): Check TYPE_SIZE_UNIT (ret_type) is not NULL.

        * c-decl.c (c_expand_body): Check TYPE_SIZE_UNIT (ret_type)
        is not NULL.
        * toplev.c (decode_W_option): Update warn_larger_than
        unconditionally for each processed switch.
        * testsuite/gcc.dg/Wlarger-than.c: New test.

From-SVN: r39352

23 years agopa.c (pa_init_machine_status): Initialize pic_offset_table_save_rtx to NULL_RTX.
John David Anglin [Tue, 30 Jan 2001 17:25:29 +0000 (17:25 +0000)]
pa.c (pa_init_machine_status): Initialize pic_offset_table_save_rtx to NULL_RTX.

        * pa.c (pa_init_machine_status): Initialize pic_offset_table_save_rtx
        to NULL_RTX.
        (hppa_expand_prologue): Delete code to save pic offset table register
        in the function prologue.
        * pa.h (PIC_OFFSET_TABLE_SAVE_RTX): Correct type in comment.
        * pa.md (call, call_value, sibcall, sibcall_value): Save the pic offset
        table register at the beginning of the function after the prologue.

From-SVN: r39351

23 years agoDaily bump.
Jeff Law [Tue, 30 Jan 2001 17:25:12 +0000 (10:25 -0700)]
Daily bump.

From-SVN: r39350

23 years agoc_locale_generic.cc: Remove langinfo include.
Benjamin Kosnik [Tue, 30 Jan 2001 17:21:50 +0000 (17:21 +0000)]
c_locale_generic.cc: Remove langinfo include.

2001-01-30   Benjamin Kosnik  <bkoz@redhat.com>

* config/c_locale_generic.cc: Remove langinfo include.

From-SVN: r39349

23 years agoPreliminary named locales.
Benjamin Kosnik [Tue, 30 Jan 2001 09:18:51 +0000 (09:18 +0000)]
Preliminary named locales.

2001-01-29  Benjamin Kosnik  <bkoz@redhat.com>

Preliminary named locales.
* acinclude.m4 (GLIBCPP_ENABLE_CLOCALE): New macro.
* aclocal.m4: Regenerate.
* configure.in: Use it.
* configure: Regerate.
* src/Makefile.am (sources): Add c++locale.cc.
(build_headers): Add c++locale.h.
* src/Makefile.in: Regenerate.
* config/c_locale_gnu.h: New file.
* config/c_locale_gnu.cc: New file. Non-inline member functions
for named locales, gnu-specific.
* config/c_locale_generic.h: New file.
* config/c_locale_generic.cc: New file. Non-inline member
functions for named locales, generic version.
* docs/html/configopts.html: Add documentation on new options.

* include/bits/locale_facets.h (class _Messages): Remove.
(class _Moneypunct): Remove.
* src/locale-inst.cc: Remove.

* include/bits/locale_facets.h (class _Collate): Remove.
* src/locale-inst.cc (std): Remove.
* src/locale.cc: And here.

* include/bits/localefwd.h (locale::_M_coalesce): New
function. Correctly put together multi-name locales.
(_Impl(const _Impl&, category, size_t)): Remove.

* include/bits/localefwd.h (locale::_Impl): Remove _M_construct_*
member functions.
(_M_normalize_category_names): Remove.
(_M_replace_categories): Fix.

* src/localename.cc (locale::_Impl::_M_construct_collate): Remove.
(locale::_Impl::_M_construct_ctype): Remove.
(locale::_Impl::_M_construct_monetary): Remove.
(locale::_Impl::_M_construct_numeric): Remove.
(locale::_Impl::_M_construct_time): Remove.
(locale::_Impl::_M_construct_messages): Remove.

* include/bits/locale_facets.h (_Bad_use_facet): Remove.
(_Use_facet_failure_handle): Remove.
* src/locale.cc: Remove definitions.
* src/locale-inst.cc: And here.

* testsuite/22_locale/ctor_copy_dtor.cc (test01): Fixup. Add tests.

* src/localename.cc (locale::facet::_S_create_c_locale): Properly
create and error-check underlying locale object.
(locale::facet::_S_destroy_c_locale): Add, take care of properly
tearing down underlying locale object.
* include/bits/localefwd.h (locale::facet): Declare.
* testsuite/22_locale/members.cc: Don't test "fr_FR" locale for
correctness, as glibc apparently has incorrect info in it. Test
with it when it works again.....

* include/bits/localefwd.h (locale::_Impl::__vec_string):
Remove. Number of categories is fixed at six, so just simplify and
make this an array of strings.
(locale::_Impl::_M_has_name): Remove.
(locale::_Impl::_M_name): Remove.
(locale::_Impl::_M_category_names): Turns into...
(locale::_Impl::_M_names): ...this.
(locale::_Impl::_M_has_same_name()): New function.
* src/localename.cc (locale::_Impl::~_Impl()): Remove here.
(locale::_Impl::_Impl(size_t __refs, string __str)): Simplify
signature.
* src/locale.cc (locale::name()): Construct mangled name
accurately reflecting combined locale categories.

* src/locale.cc (locale::classic()): Don't initialize here.
* src/localename.cc (locale::_Impl::_Impl(size_t __num, size_t
__refs, bool __has_name, string __str): Do it here.

* include/bits/localefwd.h: _S_categories_num to
_S_num_categories. _S_facets_num to _S_num_facets.
(locale::id::id()): Explicitly set _M_index to zero.
* src/locale.cc: Same.

* src/locale.cc: (locale::locale(const char*)): Construct named
locales uniquely.

* src/locale.cc: Remove numpunct_byname ctors.
* testsuite/22_locale/numpunct_byname.cc: New file.
* testsuite/22_locale/numpunct.cc: New file.

* include/bits/localefwd.h (class locale): Change data members to
protected, from private.
(_Impl::_M_get_c_locale): Add member function.
(locale::facet::_M_get_global_impl()): Add member function.
* include/bits/locale_facets.h (numpunct::_M_init): Change to take
a __c_locale pointer.
(numpunct::numpunct( __c_locale*, size_t)): Add additonal ctor for
named locales.
* testsuite/22_locale/members.cc: New file, test name and combine.

* include/bits/locale_facets.h (class numpunct): Remove class
_Punct and _Numpunct. Rewrite class numpunct to be correct for
named locales.
* include/bits/localefwd.h (locale::_Imp::_M_c_locale): Add.
* src/localename.cc (_Impl::~_Impl()): Call __frelocale.
(_Imp::_Impl(size_t, size_t, bool, string)) Initialize _M_c_locale.
* src/locale-inst.cc: Remove _Numpunct, _Punct instantiations.
* testsuite/22_locale/numpunct_char_members.cc: New file.

From-SVN: r39347

23 years ago* tm.texi (PUSH_ROUNDING): Remove duplicate lines.
Lars Brinkhoff [Tue, 30 Jan 2001 05:42:06 +0000 (22:42 -0700)]
* tm.texi (PUSH_ROUNDING): Remove duplicate lines.

From-SVN: r39346

23 years agopa.md (return): Revise comment for trivial return.
John David Anglin [Tue, 30 Jan 2001 05:18:50 +0000 (05:18 +0000)]
pa.md (return): Revise comment for trivial return.

        * pa.md (return): Revise comment for trivial return.
        (return_internal): Non-trivial return pattern for non-PIC code.
        (return_internal_pic): Non-trivial return pattern for PIC code.
        It uses the PIC register to ensure it is restored after
        function calls.
        (epilogue): Generate appropriate return for PIC and non-PIC code.

Co-Authored-By: Jeff Law <law@redhat.com>
From-SVN: r39345

23 years ago* config/i386/cygwin.h: Fix -mno-cygwin search path for link.
Christopher Faylor [Tue, 30 Jan 2001 04:56:08 +0000 (04:56 +0000)]
* config/i386/cygwin.h: Fix -mno-cygwin search path for link.

From-SVN: r39344

23 years agocombine.c (if_then_else_cond): Pass the correct mode to operand_subword() for constants.
DJ Delorie [Tue, 30 Jan 2001 02:34:22 +0000 (21:34 -0500)]
combine.c (if_then_else_cond): Pass the correct mode to operand_subword() for constants.

* combine.c (if_then_else_cond): Pass the correct mode to
operand_subword() for constants.

From-SVN: r39342

23 years agocygwin.h: Add w32api to include search.
Christopher Faylor [Tue, 30 Jan 2001 01:41:27 +0000 (01:41 +0000)]
cygwin.h: Add w32api to include search.

* config/i386/cygwin.h: Add w32api to include search.  Search different
directories in a cross-build environment.

From-SVN: r39341

23 years ago* tree.h (TYPE_STUB_DECL): Add documentation.
Richard Henderson [Tue, 30 Jan 2001 01:38:41 +0000 (17:38 -0800)]
* tree.h (TYPE_STUB_DECL): Add documentation.

From-SVN: r39340

23 years agosdbout.c (sdbout_one_type): Skip types with indeterminate size.
Laurynas Biveinis [Tue, 30 Jan 2001 01:26:25 +0000 (01:26 +0000)]
sdbout.c (sdbout_one_type): Skip types with indeterminate size.

        * sdbout.c (sdbout_one_type): Skip types with indeterminate size.
        (sdbout_field_types): Likwise.  Fix use of host_integerp.

From-SVN: r39339

23 years agojava-tree.h: Remove JTI_INTEGER_NEGATIVE_ONE_NODE.
Bryce McKinlay [Tue, 30 Jan 2001 00:37:21 +0000 (00:37 +0000)]
java-tree.h: Remove JTI_INTEGER_NEGATIVE_ONE_NODE.

* java-tree.h: Remove JTI_INTEGER_NEGATIVE_ONE_NODE.
* decl.c (init_decl_processing): Use integer_minus_one_node, not
integer_negative_one_node.
* expr.c (build_java_binop): Likewise.

From-SVN: r39337

23 years agomingw32.h: Override STARTFILE_SPEC and LINK_SPEC declared in cygwin.h.
Thomas Pfaff [Mon, 29 Jan 2001 21:41:46 +0000 (21:41 +0000)]
mingw32.h: Override STARTFILE_SPEC and LINK_SPEC declared in cygwin.h.

* mingw32.h: Override STARTFILE_SPEC and LINK_SPEC declared in
cygwin.h.

From-SVN: r39336

23 years agoiris6.h (SUPPORTS_INIT_PRIORITY): Revise definition to use flag_gnu_linker.
Jeffrey Oldham [Mon, 29 Jan 2001 19:36:52 +0000 (19:36 +0000)]
iris6.h (SUPPORTS_INIT_PRIORITY): Revise definition to use flag_gnu_linker.

2001-01-29  Jeffrey Oldham  <oldham@codesourcery.com>

* config/mips/iris6.h (SUPPORTS_INIT_PRIORITY): Revise definition
to use flag_gnu_linker.

From-SVN: r39335

23 years agocpplib.c (T_BAD_DIRECTIVE): Remove.
Neil Booth [Mon, 29 Jan 2001 19:20:12 +0000 (19:20 +0000)]
cpplib.c (T_BAD_DIRECTIVE): Remove.

        * cpplib.c (T_BAD_DIRECTIVE): Remove.
        (_cpp_init_stacks): Loop from 0 to N_DIRECTIVES - 1.

From-SVN: r39334

23 years ago* gcc.dg/cpp/avoidpaste1.c: Fix typos.
Neil Booth [Mon, 29 Jan 2001 18:58:38 +0000 (18:58 +0000)]
* gcc.dg/cpp/avoidpaste1.c: Fix typos.

From-SVN: r39333

23 years agotree.c, tree.h (build_parse_node): Remove; was identical to build_nt.
Joseph Myers [Mon, 29 Jan 2001 18:57:24 +0000 (18:57 +0000)]
tree.c, tree.h (build_parse_node): Remove; was identical to build_nt.

* tree.c, tree.h (build_parse_node): Remove; was identical to
build_nt.
* c-lang.c (start_cdtor), objc/objc-act.c
(build_module_descriptor): Use build_nt instead of
build_parse_node.

cp:
* decl2.c (build_expr_from_tree), lex.c (make_pointer_declarator,
make_reference_declarator, make_call_declarator), method.c
(implicitly_declare_fn), parse.y (namespace_using_decl,
notype_unqualified_id, expr_or_declarator, new_type_id,
after_type_declarator, direct_after_type_declarator,
notype_declarator, complex_notype_declarator,
complex_direct_notype_declarator, qualified_id,
notype_qualified_id, overqualified_id, direct_new_declarator,
absdcl, direct_abstract_declarator, conversion_declarator), pt.c
(tsubst), semantics.c (begin_constructor_declarator): Use build_nt
instead of build_parse_node.

From-SVN: r39332

23 years agoi386.md (addqi_1_lea): Fix mode (QI instead of HI).
Jakub Jelinek [Mon, 29 Jan 2001 18:31:35 +0000 (19:31 +0100)]
i386.md (addqi_1_lea): Fix mode (QI instead of HI).

* config/i386/i386.md (addqi_1_lea): Fix mode (QI instead of HI).
(testqi_1, andqi_2): If widening to SImode, make sure CONST_INT does
not have any upper bits set.

* gcc.c-torture/execute/20010129-1.c: New test.
* gcc.c-torture/execute/20010129-1.x: Add -mcpu=i686 on ia32.

From-SVN: r39331

23 years agoCOPYING.LIB: Update to LGPL 2.1 from the FSF.
Phil Edwards [Mon, 29 Jan 2001 13:32:47 +0000 (13:32 +0000)]
COPYING.LIB: Update to LGPL 2.1 from the FSF.

2001-01-29  Phil Edwards  <pme@sources.redhat.com>

* COPYING.LIB:  Update to LGPL 2.1 from the FSF.

From-SVN: r39330

23 years agoDaily bump.
Jeff Law [Mon, 29 Jan 2001 08:45:07 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r39329

23 years agozextract.c (read_zip_archive): Read file_offset before writing zipd and consequently...
Jeff Sturm [Mon, 29 Jan 2001 08:43:46 +0000 (08:43 +0000)]
zextract.c (read_zip_archive): Read file_offset before writing zipd and consequently clobbering the header...

2000-01-24  Jeff Sturm  <jeff.sturm@commerceone.com>

* zextract.c (read_zip_archive): Read file_offset before writing
zipd and consequently clobbering the header contents.

(http://gcc.gnu.org/ml/gcc-patches/2001-01/msg02129.html)

From-SVN: r39328

23 years agostmt.c (estimate_case_costs): Use integer_minus_one_node.
Kaveh R. Ghazi [Mon, 29 Jan 2001 02:46:30 +0000 (02:46 +0000)]
stmt.c (estimate_case_costs): Use integer_minus_one_node.

* stmt.c (estimate_case_costs): Use integer_minus_one_node.

* tree.c (build_common_tree_nodes_2): Set integer_minus_one_node.

* tree.h (tree_index): Add new element TI_INTEGER_MINUS_ONE.
(integer_minus_one_node): Define.

ch:
* ch-tree.h (integer_minus_one_node): Moved to top level gcc
directory.

* decl.c (integer_minus_one_node): Likewise.
(init_decl_processing): Don't set integer_minus_one_node.

cp:
* cp-tree.h (cp_tree_index): Delete CPTI_MINUS_ONE.
(minus_one_node): Moved to top level gcc directory.  Renamed
to integer_minus_one_node.

* init.c (init_init_processing): Don't set minus_one_node.
(build_vec_init): Use integer_minus_one_node.

* rtti.c (get_tinfo_decl_dynamic): Likewise.

From-SVN: r39325

23 years ago* Makefile.in (bootstrap2-lean): Fix typo.
Alexandre Oliva [Mon, 29 Jan 2001 01:48:06 +0000 (01:48 +0000)]
* Makefile.in (bootstrap2-lean): Fix typo.

From-SVN: r39324

23 years agoREADME: Add more comment.
Gabriel Dos Reis [Sun, 28 Jan 2001 15:13:08 +0000 (15:13 +0000)]
README: Add more comment.

2001-01-28  Gabriel Dos Reis  <gdr@codesourcery.com>

        * testsuite/README: Add more comment.
        * testsuite/lib/libstdc++.exp: Tweak comment.

From-SVN: r39321

23 years agoClarify comment.
Jakub Jelinek [Sun, 28 Jan 2001 14:04:19 +0000 (15:04 +0100)]
Clarify comment.

From-SVN: r39320

23 years ago* gcc.dg/cpp/avoidpaste1.c: Test case.
Neil Booth [Sun, 28 Jan 2001 11:27:22 +0000 (11:27 +0000)]
* gcc.dg/cpp/avoidpaste1.c: Test case.

From-SVN: r39319

23 years agocpphash.c (_cpp_cleanup_hashtable, [...]): Don't set fe_value.
Neil Booth [Sun, 28 Jan 2001 11:22:23 +0000 (11:22 +0000)]
cpphash.c (_cpp_cleanup_hashtable, [...]): Don't set fe_value.

        * cpphash.c (_cpp_cleanup_hashtable, _cpp_lookup_with_hash)
        : Don't set fe_value.
        * cpplib.h (AVOID_LPASTE): New flag.
        (struct cpp_hashnode): Remove fe_value.
        * cpplex.c (cpp_avoid_paste): Don't paste '.' with a number.
        * cppmacro.c (builtin_macro): Don't set flags here.
        (replace_args): Set AVOID_LPASTE flag on first token of an
        argument, and the token following it.
        (cpp_get_token): Set AVOID_LPASTE flag on first token of a
        macro expansion, and on the token following it.  Do it for
        builtins too.
        * cppmain.c (scan_buffer): Avoid pasting only flagged tokens.

From-SVN: r39318

23 years agooptimize.c (copy_body_r): If MODIFY_EXPR has both arguments identical and they would...
Jakub Jelinek [Sun, 28 Jan 2001 10:35:45 +0000 (11:35 +0100)]
optimize.c (copy_body_r): If MODIFY_EXPR has both arguments identical and they would be replaced with...

* optimize.c (copy_body_r): If MODIFY_EXPR has both arguments
identical and they would be replaced with constant, remove
MODIFY_EXPR from the tree.

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

From-SVN: r39317

23 years agoDaily bump.
Jeff Law [Sun, 28 Jan 2001 08:45:08 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r39316

23 years agoconfigure.in (target_makefile_frag): Use mt-alphaieee.
Richard Henderson [Sun, 28 Jan 2001 06:59:00 +0000 (22:59 -0800)]
configure.in (target_makefile_frag): Use mt-alphaieee.

  * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.

  * mt-alphaieee: New file.

  * config/alpha/t-ieee: Remove multilibbing.
  (TARGET_LIBGCC2_CFLAGS): Add -mieee.

  * configure.host (alpha*-*) [libgcj_flags]: Add -mieee.

From-SVN: r39309

23 years agoconfigure.in: Arrange to include defaults.h in [ht]config.h/tm.h.
Kaveh R. Ghazi [Sun, 28 Jan 2001 01:50:22 +0000 (01:50 +0000)]
configure.in: Arrange to include defaults.h in [ht]config.h/tm.h.

* configure.in: Arrange to include defaults.h in [ht]config.h/tm.h.

* Makefile.in: Remove all dependencies on defaults.h.
* builtins.c: Don't include defaults.h.
* c-common.c: Likewise.
* c-decl.c: Likewise.
* c-pragma.c: Likewise.
* c-typeck.c: Likewise.
* combine.c: Likewise.
* i386.c: Likewise.
* frame-ia64.c: Likewise.
* cppexp.c: Likewise.
* crtstuff.c: Likewise.
* dbxout.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* emit-rtl.c: Likewise.
* except.c: Likewise.
* expr.c: Likewise.
* final.c: Likewise.
* frame-dwarf2.c: Likewise.
* libgcc2.c: Likewise.
* optabs.c: Likewise.
* profile.c: Likewise.
* sdbout.c: Likewise.
* toplev.c: Likewise.
* tradcif.y: Likewise.
* tree.c: Likewise.
* varasm.c: Likewise.

ch:
* Makefile.in: Remove all dependencies on defaults.h.
* decl.c: Don't include defaults.h.
* timing.c: Likewise.

cp:
* Make-lang.in: Remove all dependencies on defaults.h.
* call.c: Don't include defaults.h.
* decl.c: Likewise.
* decl2.c: Likewise.
* except.c: Likewise.
* pt.c: Likewise.
* rtti.c: Likewise.
* tree.c: Likewise.
* typeck.c: Likewise.

f:
* Make-lang.in: Remove all dependencies on defaults.h.
* com.c: Don't include defaults.h.

java:
* Make-lang.in: Remove all dependencies on defaults.h.
* decl.c: Don't include defaults.h.
* expr.c: Likewise.
* parse.y: Likewise.

From-SVN: r39308

23 years agostdio-opt-2.c: Also test __builtin_puts and __builtin_putchar.
Kaveh R. Ghazi [Sun, 28 Jan 2001 01:27:25 +0000 (01:27 +0000)]
stdio-opt-2.c: Also test __builtin_puts and __builtin_putchar.

* gcc.c-torture/execute/stdio-opt-2.c: Also test __builtin_puts
and __builtin_putchar.

From-SVN: r39307

23 years agobuiltins.c (expand_builtin_fputs): Use size_one_node when transforming into fwrite.
Kaveh R. Ghazi [Sun, 28 Jan 2001 01:06:15 +0000 (01:06 +0000)]
builtins.c (expand_builtin_fputs): Use size_one_node when transforming into fwrite.

* builtins.c (expand_builtin_fputs): Use size_one_node when
transforming into fwrite.

From-SVN: r39306

23 years ago* extend.texi (Attribute Syntax): New section.
Joseph Myers [Sat, 27 Jan 2001 21:29:53 +0000 (21:29 +0000)]
* extend.texi (Attribute Syntax): New section.

From-SVN: r39305

23 years agofixproto: Correctly install synthesised unistd.h and stdlib.h when they didn't need...
Michael Sokolov [Sat, 27 Jan 2001 21:07:57 +0000 (21:07 +0000)]
fixproto: Correctly install synthesised unistd.h and stdlib.h when they didn't need fixing.

* fixproto: Correctly install synthesised unistd.h and stdlib.h when
they didn't need fixing.

From-SVN: r39304

23 years ago[multiple changes]
Richard Henderson [Sat, 27 Jan 2001 20:50:52 +0000 (12:50 -0800)]
[multiple changes]

2001-01-27  Janis Johnson <janis@us.ibm.com>

        * config.gcc (i[34567]86-sequent-{ptx4*,sysv4*}): Use usegas.h
        if appropriate.
        * config/ptx4.h: Several fixes to build on DYNIX/ptx v4.[456], and
        to remove macro definitions that are duplicated from elfos.h.

2001-01-27  Richard Henderson  <rth@redhat.com>

        * config/i386/sco5gas.h: Move ...
        * config/usegas.h: ... here.
        * config.gcc (i[34567]86-*-sco3.2v5) [tm_file]: Update.

From-SVN: r39303

23 years agoc-typeck.c (struct constructor_stack): Add range_stack member.
Jakub Jelinek [Sat, 27 Jan 2001 20:33:54 +0000 (21:33 +0100)]
c-typeck.c (struct constructor_stack): Add range_stack member.

* c-typeck.c (struct constructor_stack): Add range_stack member.
(really_start_incremental_init): Clear it.
(push_init_level): Save constructor_range_stack and clear it if
pushing explicit braces.
(pop_init_level): abort if constructor_range_stack is non-zero at
explicit closing brace.  Restore saved constructor_range_stack if
not implicit.

* gcc.dg/gnu99-init-1.c: Add 3 more designated range initializer
tests.

From-SVN: r39302

23 years agoexpr.c (emit_move_insn): Add REG_EQUAL note when constant loaded into register was...
Alexandre Oliva [Sat, 27 Jan 2001 20:24:34 +0000 (20:24 +0000)]
expr.c (emit_move_insn): Add REG_EQUAL note when constant loaded into register was forced into memory.

* expr.c (emit_move_insn): Add REG_EQUAL note when constant loaded
into register was forced into memory.

From-SVN: r39301

23 years agoltcf-cxx.sh (ac_cv_prog_cc_pic_works, [...]): Don't unset, it's non-portable and...
Michael Sokolov [Sat, 27 Jan 2001 19:51:13 +0000 (19:51 +0000)]
ltcf-cxx.sh (ac_cv_prog_cc_pic_works, [...]): Don't unset, it's non-portable and no longer necessary, set to empty instead.

* ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
Don't unset, it's non-portable and no longer necessary, set to empty
instead.

From-SVN: r39300

23 years ago* ltconfig: Shell portability fix for the tagname validity check.
Michael Sokolov [Sat, 27 Jan 2001 19:48:46 +0000 (19:48 +0000)]
* ltconfig: Shell portability fix for the tagname validity check.

From-SVN: r39299

23 years agojni.cc (_Jv_JNIFunctions): Added comment for each entry in native interface structure.
Tom Tromey [Sat, 27 Jan 2001 19:30:31 +0000 (19:30 +0000)]
jni.cc (_Jv_JNIFunctions): Added comment for each entry in native interface structure.

* jni.cc (_Jv_JNIFunctions): Added comment for each entry in
native interface structure.

From-SVN: r39298

23 years agoltcf-c.sh (ld_shlibs): Disable on unknown CPU types.
Alexandre Oliva [Sat, 27 Jan 2001 19:12:14 +0000 (19:12 +0000)]
ltcf-c.sh (ld_shlibs): Disable on unknown CPU types.

* ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
* ltcf-cxx.sh, ltcf-gcj.sh: Likewise.

From-SVN: r39297

23 years agopure.cc (writestr): Just use cstdio and std::fputs.
Benjamin Kosnik [Sat, 27 Jan 2001 19:00:09 +0000 (19:00 +0000)]
pure.cc (writestr): Just use cstdio and std::fputs.

2001-01-26  Benjamin Kosnik  <bkoz@kredhat.com>

* libsupc++/pure.cc (writestr): Just use cstdio and std::fputs.

From-SVN: r39296

23 years ago* Makefile.in: Remove uses of + before $(MAKE).
Alexandre Oliva [Sat, 27 Jan 2001 18:47:16 +0000 (18:47 +0000)]
* Makefile.in: Remove uses of + before $(MAKE).

From-SVN: r39295

23 years agoDaily bump.
Jeff Law [Sat, 27 Jan 2001 08:45:08 +0000 (01:45 -0700)]
Daily bump.

From-SVN: r39294

23 years agoObjectInputStream.java (read): AND byte with 0xff to make result unsigned.
Bryce McKinlay [Sat, 27 Jan 2001 06:04:29 +0000 (06:04 +0000)]
ObjectInputStream.java (read): AND byte with 0xff to make result unsigned.

* java/io/ObjectInputStream.java (read): AND byte with 0xff to make
result unsigned.
(read (byte[], int, int)): Only call readNextBlock() if the block
buffer would actually be overrun. Increment blockDataPosition.
(callReadMethod): Propagate exceptions from invocation target.
* java/io/ObjectOutputStream.java (callWriteMethod): Propagate
exceptions from invocation target.

From-SVN: r39293

23 years agoinserters_extractors.cc: Remove explicit reference to 'testsuite/'.
Loren J. Rittle [Fri, 26 Jan 2001 23:31:57 +0000 (23:31 +0000)]
inserters_extractors.cc: Remove explicit reference to 'testsuite/'.

2001-01-25  Loren J. Rittle  <ljrittle@acm.org>

        * testsuite/21_strings/inserters_extractors.cc: Remove
        explicit reference to 'testsuite/'.

From-SVN: r39292

23 years agostmt.c (cost_table): Remove.
Richard Henderson [Fri, 26 Jan 2001 23:24:38 +0000 (15:24 -0800)]
stmt.c (cost_table): Remove.

        * stmt.c (cost_table): Remove.
        (COST_TABLE, cost_table_initialized): New.
        (estimate_case_costs): Use the later instead of the former.
        (balance_case_nodes): Likewise.

From-SVN: r39291

23 years agoatomicity.h: Remove tricky .subsetion bits.
Richard Henderson [Fri, 26 Jan 2001 23:07:38 +0000 (15:07 -0800)]
atomicity.h: Remove tricky .subsetion bits.

2001-01-25  Richard Henderson  <rth@redhat.com>

* config/cpu/alpha/bits/atomicity.h: Remove tricky .subsetion
bits. Fixes Tru64 build issues.

From-SVN: r39290

23 years agojni.cc (_Jv_JNI_GetAnyMethodID): Rewrite signature from external to internal represen...
Tom Tromey [Fri, 26 Jan 2001 23:00:19 +0000 (23:00 +0000)]
jni.cc (_Jv_JNI_GetAnyMethodID): Rewrite signature from external to internal representation.

* jni.cc (_Jv_JNI_GetAnyMethodID): Rewrite signature from external
to internal representation.
(_Jv_JNI_GetAnyFieldID): Likewise.  Also, only use
_Jv_FindClassFromSignature.

From-SVN: r39289

23 years ago* ltcf-cxx.sh: Use parentheses around eval $ac_compile.
Michael Sokolov [Fri, 26 Jan 2001 22:55:12 +0000 (22:55 +0000)]
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.

From-SVN: r39288

23 years ago* libjava.jni/martin.c (Java_martin_myNative): Flush stdout.
Tom Tromey [Fri, 26 Jan 2001 22:52:19 +0000 (22:52 +0000)]
* libjava.jni/martin.c (Java_martin_myNative): Flush stdout.

From-SVN: r39287

23 years agomartin.out: New file.
Tom Tromey [Fri, 26 Jan 2001 22:41:41 +0000 (22:41 +0000)]
martin.out: New file.

* libjava.jni/martin.out: New file.
* libjava.jni/martin.c: New file.
* libjava.jni/martin.java: New file.

From-SVN: r39286

23 years agoalias.c (objects_must_conflict_p): Read-only slots may not conflict despite having...
Richard Henderson [Fri, 26 Jan 2001 22:32:51 +0000 (14:32 -0800)]
alias.c (objects_must_conflict_p): Read-only slots may not conflict despite having the same type.

        * alias.c (objects_must_conflict_p): Read-only slots may not
        conflict despite having the same type.

From-SVN: r39285

23 years agoloop.c (loop_giv_reduce_benefit): Copy mode size into int variable.
Michael Hayes [Fri, 26 Jan 2001 22:06:45 +0000 (22:06 +0000)]
loop.c (loop_giv_reduce_benefit): Copy mode size into int variable.

* loop.c (loop_giv_reduce_benefit): Copy mode size into
int variable.
(check_ext_dependant_givs): Initialise u_start_val and
u_end_val.
(load_mems): Make last_max_reg unsigned.
(try_swap_copy_prop): Use INSN_P and initialise set.

From-SVN: r39284

This page took 0.109578 seconds and 5 git commands to generate.