platform/upstream/gcc.git
21 years ago(arm_output_epilogue): Update stack pointer when popping saved IP register
Nick Clifton [Thu, 30 Jan 2003 14:13:25 +0000 (14:13 +0000)]
(arm_output_epilogue): Update stack pointer when popping saved IP register
off the stack.

From-SVN: r62138

21 years agoaix43.h: Fix comment typos.
Kazu Hirata [Thu, 30 Jan 2003 13:19:16 +0000 (13:19 +0000)]
aix43.h: Fix comment typos.

* config/rs6000/aix43.h: Fix comment typos.
* config/rs6000/aix51.h: Likewise.
* config/rs6000/aix52.h: Likewise.
* config/rs6000/altivec.h: Likewise.
* config/rs6000/rs6000.c: Likewise.
* config/rs6000/rs6000.h: Likewise.
* config/rs6000/rs6000.md: Likewise.
* config/rs6000/spe.md: Likewise.

From-SVN: r62133

21 years agoconfig.if: If gcc_version is already set, just use it.
Alexandre Oliva [Thu, 30 Jan 2003 11:52:51 +0000 (11:52 +0000)]
config.if: If gcc_version is already set, just use it.

* config.if: If gcc_version is already set, just use it.  Don't set
gcc_version_trigger if it's already set, otherwise set it to
gcc/version.c, but only if the file exists.  If it is not set and
gcc/version.c does not exist, try to extract the version number from
$CC.

From-SVN: r62131

21 years agoc-common.c (builtin_define_float_constants): Define __<TYPE>_HAS_INFINITY__ and __...
Mark Mitchell [Thu, 30 Jan 2003 07:24:02 +0000 (07:24 +0000)]
c-common.c (builtin_define_float_constants): Define __<TYPE>_HAS_INFINITY__ and __<TYPE>_HAS_QUIET_NAN__.

* c-common.c (builtin_define_float_constants): Define
__<TYPE>_HAS_INFINITY__ and __<TYPE>_HAS_QUIET_NAN__.

* call.c (build_field_call): Use build_new_op, not build_opfncall.
(prep_operand): New function.
(build_new_op): Use it.  Remove dead code.
* class.c (pushclass): Change "modify" parameter type from int to
bool.
(currently_open_class): Use same_type_p, not pointer equality.
(push_nested_class): Adjust calls to pushclass, remove modify
parameter.
* cp-tree.h (INTEGRAL_OR_ENUMERATION_TYPE_P): New macro.
(pushclass): Change prototype.
(push_nested_class): Likewise.
(grokoptypename): Remove.
(build_opfncall): Remove.
(value_dependent_expression_p): Declare.
(resolve_typename_type): Likewise.
(resolve_typename_type_in_current_instantiation): Likewise.
(enter_scope_of): Remove.
(tsubst): Remove.
(tsubst_expr): Likewise.
(tsubst_copy): Likewise.
(tsubst_copy_and_build): Likewise.
* decl.c (warn_about_implicit_typename_lookup): Remove.
(finish_case_label): Return error_mark_node for erroneous labels.
(start_decl): Adjust calls to push_nested_class.
(grokfndecl): Call push_scope/pop_scope around call to
duplicate_decls.
(grokdeclarator): Do not call tsubst.
(start_function): Adjust calls to push_nested_class.
* decl2.c (grok_array_decl): Use build_new_op, not build_opfncall.
(check_classfn): Use push_scope/pop_scope around type comparisions.
(grokoptypename): Remove.
(push_sscope): Adjust call to push_nested_class.
* error.c (dump_type): Show cv-qualification of typename types.
* init.c (build_member_call): Use build_new_op, not
build_opfncall.
* method.c (build_opfncall): Remove.
* parser.c (cp_parser): Add allow_non_constant_expression_p and
non_constant_expression_p.
(cp_parser_constant_expression): Adjust prototype.
(cp_parser_resolve_typename_type): Remove.
(cp_parser_non_constant_expression): New function.
(cp_parser_non_constant_id_expression): Likewise.
(cp_parser_new): Set allow_non_constant_expression_p and
non_constant_expression_p.
(cp_parser_primary_expression): Reject `this' and `va_arg' in
constant-expressions.  Note that dependent names aren't really
constant.
(cp_parser_postfix_expression): Reject conversions to non-integral
types in constant-expressions.  Neither are increments or
decrements.
(cp_parser_unary_expression): Reject increments and decrements in
constant-expressions.
(cp_parser_direct_new_declarator): Adjust call to
cp_parser_constant_expression.
(cp_parser_cast_expression): Reject conversions to non-integral
types in constant-expressions.
(cp_parser_assignment_expression): Rejects assignments in
constant-expressions.
(cp_parser_expression): Reject commas in constant-expressions.
(cp_parser_labeled_statement): Adjust call to
cp_parser_constant_expression.
(cp_parser_direct_declarator): Simplify array bounds, even in
templates, when they are non-dependent.  Use
resolve_typename_type, not cp_parser_resolve_typename_type.
(cp_parser_class_head): Use resolve_typename_type, not
cp_parser_resolve_typename_type.
(cp_parser_member_declaration): Adjust call to
cp_parser_constant_expression.
(cp_parser_constant_initializer): Likewise.
(cp_parser_constructor_declarator): Use resolve_typename_type, not
cp_parser_resolve_typename_type.
(cp_parser_late_parsing_default_args): Adjust call to
push_nested_class.
* pt.c (tsubst): Give it internal linkage.
(tsubst_expr): Likewise.
(tsubst_copy): Likewise.
(tsubst_copy_and_build): Likewise.
(push_access_scope_real): Likewise.
(tsubst_friend_class): Likewise.
(instantiate_class_template): Adjust call to pushclass.
(value_dependent_expression_p): Give it external linkage.
Robustify.
(resolve_typename_type): New function.
* semantics.c (finish_call_expr): Use build_new_op, not
build_opfncall.
(begin_constructor_declarator): Remove.
(begin_class_definition): Adjust call to pushclass.
(enter_scope_of): Remove.
* typeck.c (comptypes): Resolve typename types as appropriate.
(build_x_indirect_ref): Use build_new_op, not build_opfncall.
(build_x_compound_expr): Likewise.
(build_modify_expr): Likewise.
(build_x_modify_expr): Likewise.
* typeck2.c (build_x_arrow): Likewise.

* g++.dg/parser/constant1.C: New test.

* include/std/std_limits.h (numeric_limits<float>::has_infinity):
Use __FLT_HAS_INIFINITY__ to initialize.
(numeric_limits<float>::has_quiet_NaN): Likewise.
(numeric_limits<double>::has_infinity): Use __DBL_HAS_INIFINITY__
to initialize.
(numeric_limits<double>::has_quiet_NaN): Likewise.
(numeric_limits<long double>::has_infinity): Use
__LDBL_HAS_INIFINITY__ to initialize.
(numeric_limits<long_double>::has_quiet_NaN): Likewise.

From-SVN: r62130

21 years agolib1funcs.asm: Fix comment typos.
Kazu Hirata [Thu, 30 Jan 2003 06:17:33 +0000 (06:17 +0000)]
lib1funcs.asm: Fix comment typos.

* config/sh/lib1funcs.asm: Fix comment typos.
* config/sh/linux.h: Likewise.
* config/sh/sh.c: Likewise.
* config/sh/sh.md: Likewise.

From-SVN: r62129

21 years agoMake-lang.in (po-generated): Find the targets in $(parsedir).
Loren J. Rittle [Thu, 30 Jan 2003 05:19:31 +0000 (05:19 +0000)]
Make-lang.in (po-generated): Find the targets in $(parsedir).

* Make-lang.in (po-generated): Find the targets in $(parsedir).
Propagate change to all other rules as required.
(java/parse-scan.o): Add explicit dependency on
$(parsedir)/java/parse-scan.c .

From-SVN: r62128

21 years ago* objc/Make-lang.in (objc-parse.y): Find c-parse.in in $(srcdir).
Loren J. Rittle [Thu, 30 Jan 2003 05:17:56 +0000 (05:17 +0000)]
* objc/Make-lang.in (objc-parse.y): Find c-parse.in in $(srcdir).

From-SVN: r62127

21 years ago* config/fp-bit.h (__make_dp): Declare if TMODES.
Alexandre Oliva [Thu, 30 Jan 2003 04:20:07 +0000 (04:20 +0000)]
* config/fp-bit.h (__make_dp): Declare if TMODES.

From-SVN: r62125

21 years agore PR ada/8344 (mips-rtems build problem)
Laurent Guerby [Thu, 30 Jan 2003 00:46:22 +0000 (00:46 +0000)]
re PR ada/8344 (mips-rtems build problem)

2003-01-29  Laurent Guerby <guerby@acm.org>

        PR ada/8344
        * final.c: rename to adafinal.c to avoid file name conflicts with gcc file.
        * Makefile.in: match previous change.
        * Make-lang.in: match previous change.

From-SVN: r62122

21 years agoDaily bump.
GCC Administrator [Thu, 30 Jan 2003 00:17:05 +0000 (00:17 +0000)]
Daily bump.

From-SVN: r62121

21 years agoppc_closure.S: Recode to fit shared libs.
Franz Sirl [Wed, 29 Jan 2003 23:53:54 +0000 (23:53 +0000)]
ppc_closure.S: Recode to fit shared libs.

2003-01-29  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>

* src/powerpc/ppc_closure.S: Recode to fit shared libs.

From-SVN: r62112

21 years agoh8300.h (PREDICATE_CODES): Add entries for general_operand_src and general_operand_dst.
Kazu Hirata [Wed, 29 Jan 2003 22:04:57 +0000 (22:04 +0000)]
h8300.h (PREDICATE_CODES): Add entries for general_operand_src and general_operand_dst.

* config/h8300/h8300.h (PREDICATE_CODES): Add entries for
general_operand_src and general_operand_dst.

From-SVN: r62110

21 years agocp/pt.c change log entry move from ./ChangeLog to cp/ChangeLog
Fariborz Jahanian [Wed, 29 Jan 2003 19:13:12 +0000 (19:13 +0000)]
cp/pt.c change log entry move from ./ChangeLog to cp/ChangeLog

From-SVN: r62106

21 years agoAdded 'Fariborz Jahanian' to the 'Write After Approval' list.
Fariborz Jahanian [Wed, 29 Jan 2003 19:08:42 +0000 (19:08 +0000)]
Added 'Fariborz Jahanian' to the 'Write After Approval' list.

From-SVN: r62105

21 years agoparse.y (patch_assignment): Only transform the rhs of an assignment when compiling...
Tom Tromey [Wed, 29 Jan 2003 18:48:41 +0000 (18:48 +0000)]
parse.y (patch_assignment): Only transform the rhs of an assignment when compiling to native.

* parse.y (patch_assignment): Only transform the rhs of an
assignment when compiling to native.

From-SVN: r62104

21 years ago5rosinte.ads: Add SIGXCPU.
Joel Sherrill [Wed, 29 Jan 2003 17:43:57 +0000 (17:43 +0000)]
5rosinte.ads: Add SIGXCPU.

2003-01-29 Joel Sherrill <joel@OARcorp.com>

* 5rosinte.ads: Add SIGXCPU.
* 5rtpopsp.adb: New file.
* Make-lang.in: Do not build gnatpsta and gnatpsys when cross.
* Makefile.in: Recognize more RTEMS targets and add the RTEMS
specific file 5rtpopsp.adb.
* adaint.h: Add include of <stdio.h> when target is RTEMS.  This
is likely needed for all newlib targets.
* init.c: Add RTEMS specific version of __gnat_initialize().

From-SVN: r62098

21 years ago* MAINTAINERS Add myself to write-after-approval list.
Andreas Tobler [Wed, 29 Jan 2003 17:43:30 +0000 (18:43 +0100)]
* MAINTAINERS Add myself to write-after-approval list.

From-SVN: r62097

21 years agors6000.c (function_arg_pass_by_reference): Return true for variable sized types.
David Edelsohn [Wed, 29 Jan 2003 17:37:25 +0000 (17:37 +0000)]
rs6000.c (function_arg_pass_by_reference): Return true for variable sized types.

        * config/rs6000/rs6000.c (function_arg_pass_by_reference):
        Return true for variable sized types.
        (rs6000_va_arg): Handle variable sized types passed by reference
        on non-SVR4 ABI.

From-SVN: r62095

21 years agoarm.c (arm_legtimize_address): New function.
Richard Earnshaw [Wed, 29 Jan 2003 16:50:34 +0000 (16:50 +0000)]
arm.c (arm_legtimize_address): New function.

* arm.c (arm_legtimize_address): New function.
* arm-protos.h (arm_legtimize_address): Add prototype.
* arm.h (ARM_LEGITIMIZE_ADDRESS): Use arm_legitimize_address.
(LEGITIMIZE_ADDRESS, THUMB_LEGITIMIZE_ADDRESS): Wrap with
do ... while (0)

From-SVN: r62091

21 years agore PR bootstrap/9296 ([*-rtems] gthr-rtems regression)
Joel Sherrill [Wed, 29 Jan 2003 15:06:59 +0000 (15:06 +0000)]
re PR bootstrap/9296 ([*-rtems] gthr-rtems regression)

2003-01-29 Joel Sherrill <joel@OARcorp.com>

* gthr-rtems.h: Define __GTHREAD_MUTEX_INIT.  Apparently no code
depended on it being defined until now. This was tracked as PR9296.

From-SVN: r62084

21 years agore PR target/9295 ([mips-rtems] config/mips/rtems.h init/fini issue)
Joel Sherrill [Wed, 29 Jan 2003 15:01:39 +0000 (15:01 +0000)]
re PR target/9295 ([mips-rtems] config/mips/rtems.h init/fini issue)

2003-01-13 Joel Sherrill <joel@OARcorp.com>

* config/mips/rtems.h: Predefine __USE_INIT_FINI__ so generic
RTEMS code knows which C++ initialization style the toolset
configuration is using. This was tracked as PR9295.

From-SVN: r62082

21 years agore PR bootstrap/9293 ([m68k-elf/rtems] config/m68k/t-crtstuff bug)
Joel Sherrill [Wed, 29 Jan 2003 14:57:36 +0000 (14:57 +0000)]
re PR bootstrap/9293 ([m68k-elf/rtems] config/m68k/t-crtstuff bug)

2003-01-29 Joel Sherrill <joel@OARcorp.com>

* config/m68k/t-crtstuff: Replace spaces with tabs, add
 $(MULTILIB_CFLAGS) as compiler option and multilib crtbegin/end.o.
This issue was tracked as PR9293.

From-SVN: r62080

21 years agore PR bootstrap/9292 (hppa1.1-rtems configurery problems)
Joel Sherrill [Wed, 29 Jan 2003 14:54:09 +0000 (14:54 +0000)]
re PR bootstrap/9292 (hppa1.1-rtems configurery problems)

2003-01-29 Joel Sherrill <joel@OARcorp.com>

* config.gcc (hppa1.1-rtems):  Did not include t-rtems nor enable
RTEMS threads.
* config/pa/rtems.h (LIB_SPEC): Use -N when linking.
This issue was tracked as PR9292.

From-SVN: r62078

21 years agore PR c++/8591 (g++ crashes while instantiating templates)
Kriang Lerdsuwanakij [Wed, 29 Jan 2003 14:25:06 +0000 (14:25 +0000)]
re PR c++/8591 (g++ crashes while instantiating templates)

PR c++/8591
* parser.c (cp_parser_elaborated_type_specifier): Convert
TEMPLATE_DECL to TYPE_DECL only when processing template friends.
(cp_parser_maybe_treat_template_as_class): Remove redundant tests.

* g++.dg/parse/friend2.C: New test.

From-SVN: r62076

21 years agoc-parse.o: Locate source file in $(parsedir) not $(srcdir).
Nick Clifton [Wed, 29 Jan 2003 12:32:08 +0000 (12:32 +0000)]
c-parse.o: Locate source file in $(parsedir) not $(srcdir).

From-SVN: r62073

21 years agore PR c++/9437 (template function parameter `T*' shouldn't match pointers to members)
Nathan Sidwell [Wed, 29 Jan 2003 11:35:33 +0000 (11:35 +0000)]
re PR c++/9437 (template function parameter `T*' shouldn't match pointers to members)

cp:
PR c++/9437
* pt.c (unify): Don't unify '*T' with 'U C::*'.
testsuite:
PR c++/9437
* g++.dg/template/unify4.C: New test.

From-SVN: r62070

21 years agotree-inline.c (walk_tree): Add CHAR_TYPE.
Andrew Haley [Wed, 29 Jan 2003 10:52:08 +0000 (10:52 +0000)]
tree-inline.c (walk_tree): Add CHAR_TYPE.

2003-01-29  Andrew Haley  <aph@redhat.com>

        * tree-inline.c (walk_tree): Add CHAR_TYPE.

From-SVN: r62068

21 years ago* i386.md (subdi3_carry_rex64): Fix typo.
Jan Hubicka [Wed, 29 Jan 2003 09:27:46 +0000 (10:27 +0100)]
* i386.md (subdi3_carry_rex64): Fix typo.

From-SVN: r62066

21 years agoTest for bug in read-back of the pending instantiation list from the PCH file.
Fariborz Jahanian [Wed, 29 Jan 2003 02:08:15 +0000 (02:08 +0000)]
Test for bug in read-back of the pending instantiation list from the PCH file.

From-SVN: r62063

21 years ago* pt.c (last_pending_template) Declare GTY().
Fariborz Jahanian [Wed, 29 Jan 2003 02:05:38 +0000 (02:05 +0000)]
* pt.c (last_pending_template) Declare GTY().

From-SVN: r62062

21 years ago* jcf-write.c (generate_bytecode_conditional): Typo fixes.
Tom Tromey [Wed, 29 Jan 2003 01:19:40 +0000 (01:19 +0000)]
* jcf-write.c (generate_bytecode_conditional): Typo fixes.

From-SVN: r62061

21 years agoDaily bump.
GCC Administrator [Wed, 29 Jan 2003 00:17:08 +0000 (00:17 +0000)]
Daily bump.

From-SVN: r62059

21 years agoComponent.java (processPaintEvent): Dispose of Graphics object when finished.
Oscar Pearce [Tue, 28 Jan 2003 23:49:46 +0000 (23:49 +0000)]
Component.java (processPaintEvent): Dispose of Graphics object when finished.

2003-01-28  Oscar Pearce  <oscar@pearceenterprises.com>

* java/awt/Component.java (processPaintEvent): Dispose of Graphics
object when finished.

From-SVN: r62052

21 years agocoretypes.h (cpp_reader): Forward declare struct.
Stan Shebs [Tue, 28 Jan 2003 23:26:28 +0000 (23:26 +0000)]
coretypes.h (cpp_reader): Forward declare struct.

        * coretypes.h (cpp_reader): Forward declare struct.
        * c-pragma.h (cpp_reader): Remove forward declaration.
        * hashtable.h (cpp_reader): Likewise.
        * scan.h (cpp_reader): Likewise.
        * tree.h (cpp_reader): Likewise.
        * config/darwin-protos.h (cpp_reader): Likewise.
        * config/arm/arm-protos.h (cpp_reader): Likewise.
        * config/rs6000/rs6000-protos.h: Remove GCC_CPPLIB_H ifdef, use
        struct cpp_reader in prototypes.

From-SVN: r62050

21 years ago* libjava/configure.host: Disable can_unwind_signal on darwin.
Andreas Tobler [Tue, 28 Jan 2003 23:25:39 +0000 (00:25 +0100)]
* libjava/configure.host: Disable can_unwind_signal on darwin.

From-SVN: r62048

21 years agoTestEarlyGC.java: Added comment explaining bytecode.
Tom Tromey [Tue, 28 Jan 2003 23:21:13 +0000 (23:21 +0000)]
TestEarlyGC.java: Added comment explaining bytecode.

* libjava.loader/TestEarlyGC.java: Added comment explaining
bytecode.

From-SVN: r62047

21 years agoinstall.texi: Add documentation for installation into tooldirs and with DESTDIR.
Christian Cornelssen [Tue, 28 Jan 2003 23:15:16 +0000 (00:15 +0100)]
install.texi: Add documentation for installation into tooldirs and with DESTDIR.

* doc/install.texi: Add documentation for installation into
tooldirs and with DESTDIR.

From-SVN: r62044

21 years agoconfig.gcc (ia64*-*-aix*): Remove.
Richard Henderson [Tue, 28 Jan 2003 23:04:02 +0000 (15:04 -0800)]
config.gcc (ia64*-*-aix*): Remove.

        * config.gcc (ia64*-*-aix*): Remove.
        * config/ia64/aix.h, config/ia64/t-aix: Remove file.
        * config/ia64/unwind-aix.c: Remove file.

From-SVN: r62043

21 years agoconfigure.in (toolexecdir, [...]): Set and AC_SUBST.
Alexandre Oliva [Tue, 28 Jan 2003 22:58:58 +0000 (22:58 +0000)]
configure.in (toolexecdir, [...]): Set and AC_SUBST.

* configure.in (toolexecdir, toolexeclibdir): Set and AC_SUBST.
Remove USE_LIBDIR conditional.
* Makefile.am (toolexecdir, toolexeclibdir): Don't override.
* Makefile.in, configure: Rebuilt.

From-SVN: r62040

21 years agojargrep.c: Include xregex.h from libiberty instead of system regex.h for better porta...
Ranjit Mathew [Tue, 28 Jan 2003 22:25:47 +0000 (22:25 +0000)]
jargrep.c: Include xregex.h from libiberty instead of system regex.h for better portability.

2003-01-28  Ranjit Mathew  <rmathew@hotmail.com>

* jargrep.c: Include xregex.h from libiberty instead of
system regex.h for better portability.

From-SVN: r62035

21 years agore PR java/9254 (java::lang::Object::wait(), threads-win32.cc returns wrong return...
Ranjit Mathew [Tue, 28 Jan 2003 22:23:36 +0000 (22:23 +0000)]
re PR java/9254 (java::lang::Object::wait(), threads-win32.cc returns wrong return codes)

2003-01-28  Ranjit Mathew  <rmathew@hotmail.com>

Fixes PR java/9254:
* include/win32-threads.h (_Jv_Mutex_t): Convert to a struct
additionally containing id of the owner thread as well as
the number of nested times the thread has acquired the mutex.
(_Jv_MutexInit): Initialise owner thread id and refcount to 0.
(_Jv_MutexDestroy): Reset owner thread id and refcount to 0.
(_Jv_MutexUnlock): Check if really the owner thread, reset
owner thread id to 0 before leaving, if leaving for the last
time.
(_Jv_MutexLock): Set owner thread id in the mutex and increment
refcount.
(_Jv_ThreadYield): Yield using a call to Sleep(0).
* win32-threads.cc (_Jv_CondWait): Check if really owner of
the passed mutex.
Pass handle of the broadcast event, instead of a pointer to it
in Win32 ResetEvent( ) call.
Remove incorrect return values.
(_Jv_CondDestroy): Close both event handles and delete
critical section.
(_Jv_CondNotify): Check if really the owner thread.
(_Jv_CondNotifyAll): Check if really the owner thread.
(_Jv_InitThreads): Change daemon_cond to a manual-reset event.
(really_start): Use SetEvent( ) to signal daemon_cond.
(_Jv_ThreadWait): Remove SignalObjectAndWait( ) and use
WaitForSingleObject( ) instead to wait for daemon_cond to be
signalled.

From-SVN: r62033

21 years agom68k.md (tablejump+2): Don't sign extend an address register.
Andreas Schwab [Tue, 28 Jan 2003 22:17:21 +0000 (22:17 +0000)]
m68k.md (tablejump+2): Don't sign extend an address register.

        * config/m68k/m68k.md (tablejump+2): Don't sign extend an address
        register.
        * config/m68k/apollo68.h (ASM_RETURN_CASE_JUMP): Likewise.
        * config/m68k/coff.h (ASM_RETURN_CASE_JUMP): Likewise.
        * config/m68k/linux.h (ASM_RETURN_CASE_JUMP): Likewise.
        * config/m68k/m68kelf.h (ASM_RETURN_CASE_JUMP): Likewise.
        * config/m68k/mot3300.h (ASM_RETURN_CASE_JUMP): Likewise.
        * config/m68k/netbsd-elf.h (ASM_RETURN_CASE_JUMP): Likewise.
        * config/m68k/pbb.h (ASM_RETURN_CASE_JUMP): Likewise.

From-SVN: r62030

21 years ago* combine.c (nonzero_bits): Fix check for negative divide operands.
Richard Sandiford [Tue, 28 Jan 2003 22:15:50 +0000 (22:15 +0000)]
* combine.c (nonzero_bits): Fix check for negative divide operands.

From-SVN: r62029

21 years agoia64.c (ia64_rwreloc_section_type_flags): New.
Richard Henderson [Tue, 28 Jan 2003 22:08:24 +0000 (14:08 -0800)]
ia64.c (ia64_rwreloc_section_type_flags): New.

        * config/ia64/ia64.c (ia64_rwreloc_section_type_flags): New.
        * config/ia64/hpux.h (TARGET_SECTION_TYPE_FLAGS): New.

From-SVN: r62028

21 years ago* Makefile.in (all-subdir, check-subdir, installcheck-subdir)
Christian Cornelssen [Tue, 28 Jan 2003 21:52:14 +0000 (22:52 +0100)]
* Makefile.in (all-subdir, check-subdir, installcheck-subdir)
(info-subdir, install-info-subdir, clean-info-subdir)
(dvi-subdir, install-subdir, etags-subdir, mostlyclean-subdir)
(clean-subdir, distclean-subdir, maintainer-clean-subdir):
Pass $(FLAGS_TO_PASS).

From-SVN: r62013

21 years agocris.c (cris_address_cost): Make static.
Richard Henderson [Tue, 28 Jan 2003 21:32:24 +0000 (13:32 -0800)]
cris.c (cris_address_cost): Make static.

        * config/cris/cris.c (cris_address_cost): Make static.
        (TARGET_RTX_COSTS, TARGET_ADDRESS_COST): New.
        * config/cris/cris.h (ADDRESS_COST): Remove.
        * config/cris/cris-protos.h: Update.

From-SVN: r62009

21 years ago* cse.c (find_best_addr): Kill !ADDRESS_COST code.
Richard Henderson [Tue, 28 Jan 2003 21:29:40 +0000 (13:29 -0800)]
* cse.c (find_best_addr): Kill !ADDRESS_COST code.

From-SVN: r62008

21 years agonested1.C: Test moved from ...
Jeffrey D. Oldham [Tue, 28 Jan 2003 20:11:44 +0000 (20:11 +0000)]
nested1.C: Test moved from ...

2003-01-28  Jeffrey D. Oldham  <oldham@codesourcery.com>

* g++.dg/lookup/nested1.C: Test moved from ...
* g++.old-deja/g++.other/lookup24.C: ... here.

From-SVN: r62007

21 years agoregclass.c (init_reg_autoinc): New function.
Mike Stump [Tue, 28 Jan 2003 19:40:46 +0000 (19:40 +0000)]
regclass.c (init_reg_autoinc): New function.

        * regclass.c (init_reg_autoinc): New function.
        (regclass): Move initialization of forbidden_inc_dec_class from
        here...
        (init_regs): to here.  Avoids reinitialization for each function,
        saving compilation time.

From-SVN: r62006

21 years agocpplib.h (struct cpp_options): Add warn_deprecated field.
Jason Merrill [Tue, 28 Jan 2003 19:30:00 +0000 (14:30 -0500)]
cpplib.h (struct cpp_options): Add warn_deprecated field.

        * cpplib.h (struct cpp_options): Add warn_deprecated field.
        * cppinit.c (cpp_create_reader): Turn it on by default.
        * c-opts.c (c_common_decode_option): Set it.
        * cpplib.c (do_pragma_once): Only complain about #pragma once
        if warn_deprecated is set.

From-SVN: r62005

21 years agoemit-rtl.c (const_double_htab_hash): Use mode in the hash.
Dale Johannesen [Tue, 28 Jan 2003 19:25:49 +0000 (19:25 +0000)]
emit-rtl.c (const_double_htab_hash): Use mode in the hash.

2003-01-28  Dale Johannesen  <dalej@apple.com>
        * emit-rtl.c (const_double_htab_hash):  Use mode in the hash.
        * loop.c (scan_loop):  Move movables on -Os rich-register targets.
        * config/rs6000/rs6000.md (sibcall*):  Use match_operand for LR.

From-SVN: r62004

21 years agoAdd ChangeLog entry for last change.
Rainer Orth [Tue, 28 Jan 2003 19:18:49 +0000 (19:18 +0000)]
Add ChangeLog entry for last change.

From-SVN: r62003

21 years ago* gcc.dg/i386-cmov5.c: New test.
Jan Hubicka [Tue, 28 Jan 2003 19:16:01 +0000 (20:16 +0100)]
* gcc.dg/i386-cmov5.c:  New test.

From-SVN: r62002

21 years agoconfigure.in: Specifically define HAVE_BACKTRACE if building for MinGW.
Ranjit Mathew [Tue, 28 Jan 2003 19:10:00 +0000 (19:10 +0000)]
configure.in: Specifically define HAVE_BACKTRACE if building for MinGW.

2003-01-27  Ranjit Mathew  <rmathew@hotmail.com>

* configure.in: Specifically define HAVE_BACKTRACE if building
for MinGW.
* include/win32.h: Remove HAVE_BACKTRACE definition.
* gnu/gcj/runtime/natStackTrace.cc: Include platform.h.
* configure: Rebuilt.

From-SVN: r62000

21 years agoUpdated copyright year.
Rainer Orth [Tue, 28 Jan 2003 19:05:11 +0000 (19:05 +0000)]
Updated copyright year.

From-SVN: r61998

21 years ago* libjava.jacks/jacks.xfail: More lexer tests now pass.
Tom Tromey [Tue, 28 Jan 2003 18:48:32 +0000 (18:48 +0000)]
* libjava.jacks/jacks.xfail: More lexer tests now pass.

From-SVN: r61995

21 years agolex.c (java_lex): Don't include UEOF as part of token.
Tom Tromey [Tue, 28 Jan 2003 18:47:52 +0000 (18:47 +0000)]
lex.c (java_lex): Don't include UEOF as part of token.

* lex.c (java_lex): Don't include UEOF as part of token.
(java_read_unicode): Error if \u sequence prematurely terminated.

From-SVN: r61993

21 years ago20010925-1.c: Changed the memcpy declaration.
D.Venkatasubramanian [Tue, 28 Jan 2003 18:33:19 +0000 (18:33 +0000)]
20010925-1.c: Changed the memcpy declaration.

        * gcc.c-torture/execute/20010925-1.c: Changed the
        memcpy declaration.

From-SVN: r61992

21 years agotarget.h (targetm.address_cost): New.
Richard Henderson [Tue, 28 Jan 2003 18:14:42 +0000 (10:14 -0800)]
target.h (targetm.address_cost): New.

* target.h (targetm.address_cost): New.
* target-def.h (TARGET_ADDRESS_COST): New.
(TARGET_RTX_COSTS): Uncomment.  Oops.
* cse.c (address_cost): Use new target hook.
(default_address_cost): New.
* output.h (default_address_cost): Declare.
* hooks.c (hook_int_rtx_0): New.
* hooks.h (hook_int_rtx_0): Declare.
* loop.c (combine_givs_p): Remove if 0 code.
* system.h (ADDRESS_COST): Poison.

* config/alpha/alpha.c, config/alpha/alpha.h, config/d30v/d30v.c,
config/d30v/d30v.h, config/ia64/ia64.c, config/ia64/ia64.h,
config/m32r/m32r.c, config/m32r/m32r.h, config/mcore/mcore.c,
config/mcore/mcore.h, config/mmix/mmix.c, config/mmix/mmix.h,
config/rs6000/rs6000.c, config/rs6000/rs6000.h, config/sparc/sparc.c,
config/sparc/sparc.h, config/v850/v850.c, config/v850/v850.h,
config/xtensa/xtensa.c, config/xtensa/xtensa.h
(TARGET_ADDRESS_COST): Define as hook_int_rtx_0.
(ADDRESS_COST): Remove.

* config/arc/arc-protos.h, config/arc/arc.c, config/arc/arc.h,
config/avr/avr-protos.h, config/avr/avr.c, config/avr/avr.h,
config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
config/dsp16xx/dsp16xx.h, config/i386/i386-protos.h,
config/i386/i386.c, config/i386/i386.h, config/i960/i960-protos.h,
config/i960/i960.c, config/i960/i960.h, config/ip2k/ip2k-protos.h,
config/ip2k/ip2k.c, config/ip2k/ip2k.h, config/mips/mips-protos.h,
config/mips/mips.c, config/mips/mips.h,
config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c,
config/m68hc11/m68hc11.h, config/ns32k/ns32k-protos.h,
config/ns32k/ns32k.c, config/ns32k/ns32k.h, config/pa/pa-protos.h,
config/pa/pa.c, config/pa/pa.h, config/s390/s390-protos.h,
config/s390/s390.c, config/s390/s390.h, config/vax/vax-protos.h,
config/vax/vax.c, config/vax/vax.h
(foo_address_cost): Make static.
(TARGET_ADDRESS_COST): New.
(ADDRESS_COST): Remove.

* config/arm/arm.h, config/arm/arm.c, config/m88k/m88k.h,
config/m88k/m88k.c, config/romp/romp.h, config/romp/romp.c,
config/sh/sh.c, config/sh/sh.h, config/stormy16/stormy16.c,
config/stormy16/stormy16.h
(ADDRESS_COST): Move code ...
(foo_address_cost): ... here.
(TARGET_ADDRESS_COST): New.

* config/m32r/m32r.c (m32r_address_cost): Remove.
* config/m32r/m32r-protos.h: Update.

* config/mmix/mmix.c (mmix_address_cost): Remove.
* config/mmix/mmix-protos.h: Update.

* config/mn10300/mn10300.c (mn10300_address_cost_1): Rename from
mn10300_address_cost; move unsig allocation ...
(mn10300_address_cost): ... here.
(TARGET_ADDRESS_COST): New.
* config/mn10300/mn10300-protos.h: Update.
* config/mn10300/mn10300.h (ADDRESS_COST): Remove.

From-SVN: r61989

21 years agotarget.h (targetm.address_cost): New.
Richard Henderson [Tue, 28 Jan 2003 18:08:56 +0000 (10:08 -0800)]
target.h (targetm.address_cost): New.

* target.h (targetm.address_cost): New.
* target-def.h (TARGET_ADDRESS_COST): New.
(TARGET_RTX_COSTS): Uncomment.  Oops.
* cse.c (address_cost): Use new target hook.
(default_address_cost): New.
* output.h (default_address_cost): Declare.
* hooks.c (hook_int_rtx_0): New.
* hooks.h (hook_int_rtx_0): Declare.
* loop.c (combine_givs_p): Remove if 0 code.
* system.h (ADDRESS_COST): Poison.

* config/alpha/alpha.c, config/alpha/alpha.h, config/d30v/d30v.c,
config/d30v/d30v.h, config/ia64/ia64.c, config/ia64/ia64.h,
config/m32r/m32r.c, config/m32r/m32r.h, config/mcore/mcore.c,
config/mcore/mcore.h, config/mmix/mmix.c, config/mmix/mmix.h,
config/rs6000/rs6000.c, config/rs6000/rs6000.h, config/sparc/sparc.c,
config/sparc/sparc.h, config/v850/v850.c, config/v850/v850.h,
config/xtensa/xtensa.c, config/xtensa/xtensa.h
(TARGET_ADDRESS_COST): Define as hook_int_rtx_0.
(ADDRESS_COST): Remove.

* config/arc/arc-protos.h, config/arc/arc.c, config/arc/arc.h,
config/avr/avr-protos.h, config/avr/avr.c, config/avr/avr.h,
config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
config/dsp16xx/dsp16xx.h, config/i386/i386-protos.h,
config/i386/i386.c, config/i386/i386.h, config/i960/i960-protos.h,
config/i960/i960.c, config/i960/i960.h, config/ip2k/ip2k-protos.h,
config/ip2k/ip2k.c, config/ip2k/ip2k.h, config/mips/mips-protos.h,
config/mips/mips.c, config/mips/mips.h,
config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c,
config/m68hc11/m68hc11.h, config/ns32k/ns32k-protos.h,
config/ns32k/ns32k.c, config/ns32k/ns32k.h, config/pa/pa-protos.h,
config/pa/pa.c, config/pa/pa.h, config/s390/s390-protos.h,
config/s390/s390.c, config/s390/s390.h, config/vax/vax-protos.h,
config/vax/vax.c, config/vax/vax.h
(foo_address_cost): Make static.
(TARGET_ADDRESS_COST): New.
(ADDRESS_COST): Remove.

* config/arm/arm.h, config/arm/arm.c, config/m88k/m88k.h,
config/m88k/m88k.c, config/romp/romp.h, config/romp/romp.c,
config/sh/sh.c, config/sh/sh.h, config/stormy16/stormy16.c,
config/stormy16/stormy16.h
(ADDRESS_COST): Move code ...
(foo_address_cost): ... here.
(TARGET_ADDRESS_COST): New.

* config/m32r/m32r.c (m32r_address_cost): Remove.
* config/m32r/m32r-protos.h: Update.

* config/mmix/mmix.c (mmix_address_cost): Remove.
* config/mmix/mmix-protos.h: Update.

* config/mn10300/mn10300.c (mn10300_address_cost_1): Rename from
mn10300_address_cost; move unsig allocation ...
(mn10300_address_cost): ... here.
(TARGET_ADDRESS_COST): New.
* config/mn10300/mn10300-protos.h: Update.
* config/mn10300/mn10300.h (ADDRESS_COST): Remove.

From-SVN: r61988

21 years agore PR c++/3902 ([parser] ambiguous 8.2/7)
Nathan Sidwell [Tue, 28 Jan 2003 17:36:11 +0000 (17:36 +0000)]
re PR c++/3902 ([parser] ambiguous 8.2/7)

cp:
PR c++/3902
* parser.c (cp_parser_decl_specifier_seq): Cannot have constructor
inside a declarator.
testsuite:
PR c++/3902
* g++.dg/parse/template5.C: New test.

From-SVN: r61987

21 years agore PR rtl-optimization/9258 (ICE in compensate_edge, at reg-stack.c:2589)
Toon Moene [Tue, 28 Jan 2003 17:20:41 +0000 (18:20 +0100)]
re PR rtl-optimization/9258 (ICE in compensate_edge, at reg-stack.c:2589)

2003-01-28  Toon Moene  <toon@moene.indiv.nluug.nl>

PR fortran/9258
* g77.dg/pr9258: New test.

From-SVN: r61984

21 years agohaifa-sched.c (schedule_insn): Return necessary cycle advance after issuing the insn.
Vladimir Makarov [Tue, 28 Jan 2003 17:12:06 +0000 (17:12 +0000)]
haifa-sched.c (schedule_insn): Return necessary cycle advance after issuing the insn.

2003-01-28  Vladimir Makarov  <vmakarov@redhat.com>

* haifa-sched.c (schedule_insn): Return necessary cycle advance
after issuing the insn.
(rank_for_schedule): Make a insn with /S the highest priority
insn.
(move_insn): Ignore schedule groups.  Clear SCHED_GROUP_P.
(choose_ready): Check SCHED_GROUP_P.
(schedule_block): Advance cycle after issuing insn if it is
necessary.  Don't reorder insns if there is an insn with /S.
(set_priorities): Ignore schedule groups.

* sched-deps.c (remove_dependence, group_leader): Remove the
functions.
(add_dependence): Ignore schedule groups.
(set_sched_group_p): Don't make copy of dependencies from previous
insn of the schedule group.  Add anti-dependency to the previous
insn of the schedule group.
(compute_forward_dependences): Ignore schedule groups.

* sched-ebb.c (init_ready_list): Ignore schedule groups.

* sched-rgn.c (init_ready_list): Ditto.
(can_schedule_ready_p): Ditto.

From-SVN: r61983

21 years agoREADME: Move relevant parts from README.g++.
Gerald Pfeifer [Tue, 28 Jan 2003 17:05:33 +0000 (18:05 +0100)]
README: Move relevant parts from README.g++.

* README: Move relevant parts from README.g++.

* README.g++: Remove this file.

From-SVN: r61982

21 years agoi386.md (*movsi_1): Use movdqa to move one xmm register to another one.
Vladimir Makarov [Tue, 28 Jan 2003 17:03:38 +0000 (17:03 +0000)]
i386.md (*movsi_1): Use movdqa to move one xmm register to another one.

2003-01-28  Vladimir Makarov  <vmakarov@redhat.com>

* config/i386/i386.md (*movsi_1): Use movdqa to move one xmm
register to another one.

From-SVN: r61981

21 years ago* calls.c (default_must_pass_in_stack): Fix typo in !type case.
Richard Henderson [Tue, 28 Jan 2003 16:56:36 +0000 (08:56 -0800)]
* calls.c (default_must_pass_in_stack): Fix typo in !type case.

From-SVN: r61980

21 years agoffi.h.in: Enable FFI_CLOSURES for x86_64.
Andrew Haley [Tue, 28 Jan 2003 15:54:28 +0000 (15:54 +0000)]
ffi.h.in: Enable FFI_CLOSURES for x86_64.

2003-01-28  Andrew Haley  <aph@redhat.com>

        * include/ffi.h.in: Enable FFI_CLOSURES for x86_64.
        * src/x86/ffi64.c (ffi_prep_closure): New.
        (ffi_closure_UNIX64_inner): New.
        * src/x86/unix64.S (ffi_closure_UNIX64): New.

From-SVN: r61978

21 years agomips.h (UNITS_PER_HWFPVALUE): Renamed from...
Alexandre Oliva [Tue, 28 Jan 2003 15:48:17 +0000 (15:48 +0000)]
mips.h (UNITS_PER_HWFPVALUE): Renamed from...

* config/mips/mips.h (UNITS_PER_HWFPVALUE): Renamed from...
(UNITS_PER_FPVALUE): Defined as the width of a long double, or
zero if no hardware floating point.
(LONG_DUBLE_TYPE_SIZE): Set to 128 on N32 and N64.
(MAX_FIXED_MODE_SIZE): Define to LONG_DOUBLE_TYPE_SIZE.
(LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define.
(BIGGEST_ALIGNMENT): Same as LONG_DOUBLE_TYPE_SIZE.
(FUNCTION_VALUE_REGNO_P): Set for FP_RETURN+2 on N32 and N64.
* config/mips/mips.c (mips_arg_info): Pass TFmode values in
even FP registers on N32 and N64.
(mips_setup_incoming_varargs): Use UNITS_PER_HWFPVALUE.
(mips_va_start): Adjust alignment of ARG_POINTER_REGNUM.
(mips_va_arg): Use UNITS_PER_HWFPVALUE.  Impose additional
even-register-like alignment to 128-bit arguments.
(save_restore_insns): Use UNITS_PER_HWFPVALUE.
(mips_function_value): Likewise.  Return TFmode in $f0 and $f2
on N32 or N64.
* config/mips/_tilib.c (__negti2, __ashlti3, __lshrti3): New.
* config/mips/t-iris6 (LIB2FUNCS_EXTRA): Add _tilib.c.
(TPBIT): Set to tp-bit.c.
(tp-bit.c): Create out of fp-bit.c.

From-SVN: r61977

21 years agore PR c++/9433 (SegFault in dynamic_cast)
Nathan Sidwell [Tue, 28 Jan 2003 15:26:53 +0000 (15:26 +0000)]
re PR c++/9433 (SegFault in dynamic_cast)

libstdc++-v3:
        PR c++/9433
        * libsupc++/tinfo.cc (__vmi_class_type_info::__do_dyncast): Cope
        with bases which are very ambiguous.
gcc/testsuite:
        * g++.dg/abi/dcast1.C: New test.

From-SVN: r61973

21 years ago* cse.c (cse_insn): Avoid redundant REG_EQUAL notes.
Roger Sayle [Tue, 28 Jan 2003 14:52:07 +0000 (14:52 +0000)]
* cse.c (cse_insn): Avoid redundant REG_EQUAL notes.

From-SVN: r61971

21 years ago* gcc.c-torture/execute/builtin-constant.x: Only expect failure at -O1.
Kaveh R. Ghazi [Tue, 28 Jan 2003 14:21:26 +0000 (14:21 +0000)]
* gcc.c-torture/execute/builtin-constant.x: Only expect failure at -O1.

From-SVN: r61970

21 years agosh.h (CLASS_MAX_NREGS): If TARGET_SHMEDIA...
Richard Sandiford [Tue, 28 Jan 2003 12:45:12 +0000 (12:45 +0000)]
sh.h (CLASS_MAX_NREGS): If TARGET_SHMEDIA...

* config/sh/sh.h (CLASS_MAX_NREGS): If TARGET_SHMEDIA, and the given
class contains a floating-point register, return the size of the
mode in half words.

From-SVN: r61966

21 years agoAdd a missing change to:
Gerald Pfeifer [Tue, 28 Jan 2003 12:41:24 +0000 (12:41 +0000)]
Add a missing change to:

* gcc/doc/invoke.texi (Optimization Options): Group together
optional and experimental flags.  Move trapv and bounds-check
out of this section.  Group floating point flags together.
(Code Gen Options): Move trapv and bounds-check to here.

From-SVN: r61964

21 years agoi386.c (ix86_carry_flag_operator): New predicate.
Jan Hubicka [Tue, 28 Jan 2003 11:16:32 +0000 (12:16 +0100)]
i386.c (ix86_carry_flag_operator): New predicate.

  * i386.c (ix86_carry_flag_operator):  New predicate.
  (fcmov_operator): Fix whitespace.
  (ix86_expand_carry_flag_compare):  Deal with floating point.
  (ix86_expand_int_movcc): Deal with fp; update insn expansion
  (ix86_expand_int_addcc): Likewise.
  (ix86_expand_strlensi_unroll_1): likewsie.
  * i386.h (PREDICATE_CODES): Add ix86_carry_flag_operator.
  * i386.md (add?i_carry_rex64): Use new predicate.
  (sub?i3_carry_rex64): Likewise.
  (x86_mov?icc_0_m1*): Likewise.

From-SVN: r61963

21 years agocfgloopmanip.c (create_preheader): Initialize src to avoid warning.
Andreas Schwab [Tue, 28 Jan 2003 11:05:18 +0000 (11:05 +0000)]
cfgloopmanip.c (create_preheader): Initialize src to avoid warning.

* cfgloopmanip.c (create_preheader): Initialize src to avoid
warning.

* expmed.c (emit_store_flag): Fix cast to avoid sign
comparison warning.

From-SVN: r61962

21 years agocombine.c (force_to_mode): Add cast to fix warning when STORE_FLAG_VALUE is negative.
Andreas Schwab [Tue, 28 Jan 2003 11:02:28 +0000 (11:02 +0000)]
combine.c (force_to_mode): Add cast to fix warning when STORE_FLAG_VALUE is negative.

* combine.c (force_to_mode): Add cast to fix warning when
STORE_FLAG_VALUE is negative.

From-SVN: r61961

21 years agoconsthrow.java: New file.
Tom Tromey [Tue, 28 Jan 2003 06:19:48 +0000 (06:19 +0000)]
consthrow.java: New file.

* libjava.compile/consthrow.java: New file.
* libjava.compile/consthrow.xfail: New file.

From-SVN: r61959

21 years agoparse.y (java_check_regular_methods): Check for construct after checking types in...
Tom Tromey [Tue, 28 Jan 2003 06:18:31 +0000 (06:18 +0000)]
parse.y (java_check_regular_methods): Check for construct after checking types in throws clause.

* parse.y (java_check_regular_methods): Check for construct after
checking types in throws clause.

From-SVN: r61956

21 years agoMakefile.in (cse.o): Depend on TARGET_H.
Richard Henderson [Tue, 28 Jan 2003 04:46:33 +0000 (20:46 -0800)]
Makefile.in (cse.o): Depend on TARGET_H.

* Makefile.in (cse.o): Depend on TARGET_H.
* cse.c (rtx_cost): Use targetm.rtx_costs.
* system.h (CONST_COSTS RTX_COSTS DEFAULT_RTX_COSTS): Poison.
* doc/tm.texi: Update.

* target.h (targetm.rtx_costs): New.
* target-def.h (TARGET_RTX_COSTS): New.
* hooks.c (hook_bool_rtx_int_int_intp_false): New.
* hooks.h: Update.

* config/alpha/alpha.c (alpha_rtx_cost_data): New.
(alpha_rtx_costs, TARGET_RTX_COSTS): New.
* config/alpha/alpha.h (PROCESSOR_MAX): New.
(CONST_COSTS, RTX_COSTS): Remove.

* config/arc/arc.c, config/arc/arc.h, config/c4x/c4x.c,
config/c4x/c4x.h, config/cris/cris.c, config/cris/cris.h,
config/d30v/d30v.c, config/d30v/d30v.h, config/dsp16xx/dsp16xx.c,
config/dsp16xx/dsp16xx.h, config/frv/frv.c, config/frv/frv.h,
config/h8300/h8300.c, config/h8300/h8300.h, config/i370/i370.c,
config/i370/i370.h, config/i386/i386.c, config/i386/i386.h,
config/i960/i960.c, config/i960/i960.h, config/ia64/ia64.c,
config/ia64/ia64.h, config/m32r/m32r.c, config/m32r/m32r.h,
config/m68k/m68k.c, config/m68k/m68k.h, config/m88k/m88k.c,
config/m88k/m88k.h, config/mcore/mcore.c, config/mcore/mcore.h,
config/mips/mips.c, config/mips/mips.h, config/mn10200/mn10200.c,
config/mn10200/mn10200.h, config/mn10300/mn10300.c,
config/mn10300/mn10300.h, config/ns32k/ns32k.c, config/ns32k/ns32k.h,
config/pa/pa.c, config/pa/pa.h, config/pdp11/pdp11.c,
config/pdp11/pdp11.h, config/romp/romp.c, config/romp/romp.h,
config/rs6000/rs6000.c, config/rs6000/rs6000.h, config/s390/s390.c,
config/s390/s390.h, config/sh/sh.c, config/sh/sh.h,
config/stormy16/stormy16.c, config/stormy16/stormy16.h,
config/v850/v850.c, config/v850/v850.h,
config/xtensa/xtensa.c, config/xtensa/xtensa.h
(CONST_COSTS, RTX_COSTS): Move code ...
(foo_rtx_costs, TARGET_RTX_COSTS): ... here.

* config/arm/arm.c (arm_rtx_costs_1): Rename from arm_rtx_costs.
(arm_rtx_costs, TARGET_RTX_COSTS): New.
* config/arm/arm-protos.h: Update.
* config/arm/arm.h (DEFAULT_RTX_COSTS): Remove.

* config/avr/avr.h (CONST_COSTS): Move code ...
* config/avr/avr.c (avr_rtx_costs): ... here.
(default_rtx_costs): Make static.
* config/avr/avr-protos.h: Update.

* config/h8300/h8300.c (const_costs): Make static.
(h8300_and_costs, h8300_shift_costs): Likewise.
* config/h8300/h8300-protos.h: Update.

* config/ip2k/ip2k.h (DEFAULT_RTX_COSTS): Remove.
(CONST_COSTS): Move code ...
* config/ip2k/ip2k.c (ip2k_rtx_costs): ... here.  Rename from
default_rtx_costs; update for signature change.
* config/ip2k/ip2k-protos.h: Update.

* config/m68hc11/m68hc11.h (RTX_COSTS): Remove.
(CONST_COSTS): Move code ...
* config/m68hc11/m68hc11.c (m68hc11_rtx_costs): ... here.
(TARGET_RTX_COSTS): New.
(m68hc11_rtx_costs_1): Rename from m68hc11_rtx_costs; make static.
* config/m68hc11/m68hc11-protos.h: Update.

* config/m68k/m68k.c (const_int_cost): Make static.
* config/m68k/m68k-protos.h: Update.

* config/mcore/mcore.c (mcore_const_costs): Make static.
(mcore_and_cost, mcore_ior_cost): Likewise.
* config/mcore/mcore-protos.h: Update.

* config/mmix/mmix.c (mmix_rtx_costs, TARGET_RTX_COSTS): New.
(mmix_rtx_cost_recalculated): Remove.
* config/mmix/mmix.h (DEFAULT_RTX_COSTS): Remove.
* config/mmix/mmix-protos.h: Update.

* config/sh/sh.c (shiftcosts): Make static.
(addsubcosts, andcosts, multcosts): Likewise.
* config/sh/sh-protos.h: Update.

* config/sparc/sparc.c (TARGET_RTX_COSTS): New.
(sparc_rtx_costs): Make static; update for change in signature.
* config/sparc/sparc.h (RTX_COSTS_CASES, RTX_COSTS): Remove.
* config/sparc/sparc-protos.h: Update.

* config/v850/v850.c (const_costs): Make static.
* config/v850/v850-protos.h: Update.

* config/vax/vax.h (RTX_COSTS): Remove.
(CONST_COSTS): Move code ...
* config/vax/vax.c (vax_rtx_costs_1): ... here; rename
from vax_rtx_cost.
(vax_rtx_costs, TARGET_RTX_COSTS): New.

From-SVN: r61954

21 years ago* config/vax/vax-protos.h: Update. Really.
Richard Henderson [Tue, 28 Jan 2003 03:41:10 +0000 (19:41 -0800)]
* config/vax/vax-protos.h: Update.  Really.

From-SVN: r61952

21 years ago* config/vax/vax.h (ASM_OUTPUT_MI_THUNK): Remove. Really.
Richard Henderson [Tue, 28 Jan 2003 03:39:45 +0000 (19:39 -0800)]
* config/vax/vax.h (ASM_OUTPUT_MI_THUNK): Remove.  Really.

From-SVN: r61951

21 years agore PR c++/47 (nested classes broken)
Jeffrey D. Oldham [Tue, 28 Jan 2003 03:26:00 +0000 (03:26 +0000)]
re PR c++/47 (nested classes broken)

2003-01-27  Jeffrey D. Oldham  <oldham@codesourcery.com>

PR c++/47
* g++.old-deja/g++.other/lookup24.C: New test.

From-SVN: r61950

21 years agomips.h (UNITS_PER_HWFPVALUE): Renamed from...
Alexandre Oliva [Tue, 28 Jan 2003 02:18:43 +0000 (02:18 +0000)]
mips.h (UNITS_PER_HWFPVALUE): Renamed from...

* config/mips/mips.h (UNITS_PER_HWFPVALUE): Renamed from...
(UNITS_PER_FPVALUE): Defined as the width of a long double, or
zero if no hardware floating point.
(LONG_DUBLE_TYPE_SIZE): Set to 128 on N32 and N64.
(MAX_FIXED_MODE_SIZE): Define to LONG_DOUBLE_TYPE_SIZE.
(LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define.
(BIGGEST_ALIGNMENT): Same as LONG_DOUBLE_TYPE_SIZE.
(FUNCTION_VALUE_REGNO_P): Set for FP_RETURN+2 on N32 and N64.
* config/mips/mips.c (mips_arg_info): Pass TFmode values in
even FP registers on N32 and N64.
(mips_setup_incoming_varargs): Use UNITS_PER_HWFPVALUE.
(mips_va_start): Adjust alignment of ARG_POINTER_REGNUM.
(mips_va_arg): Use UNITS_PER_HWFPVALUE.  Impose additional
even-register-like alignment to 128-bit arguments.
(save_restore_insns): Use UNITS_PER_HWFPVALUE.
(mips_function_value): Likewise.  Return TFmode in $f0 and $f2
on N32 or N64.
* config/mips/_tilib.c (__negti2, __ashlti3, __lshrti3): New.
* config/mips/t-iris6 (LIB2FUNCS_EXTRA): Add _tilib.c.
(TPBIT): Set to tp-bit.c.
(tp-bit.c): Create out of fp-bit.c.

From-SVN: r61945

21 years agore PR middle-end/7227 (bogus code generation with attribute mode TI)
Kaveh R. Ghazi [Tue, 28 Jan 2003 01:59:22 +0000 (01:59 +0000)]
re PR middle-end/7227 (bogus code generation with attribute mode TI)

PR middle-end/7227
* gcc.dg/uninit-C.c: New test.

From-SVN: r61941

21 years ago* c-parse.in: Remove '%expect 32' directive in objc mode
Gabriel Dos Reis [Tue, 28 Jan 2003 01:56:32 +0000 (01:56 +0000)]
* c-parse.in: Remove '%expect 32' directive in objc mode

From-SVN: r61940

21 years agoMakefile.in (install_to_tooldir): Instead of $(MULTISUBDIR), use /`$$CC -print-multi...
Alexandre Oliva [Tue, 28 Jan 2003 01:48:39 +0000 (01:48 +0000)]
Makefile.in (install_to_tooldir): Instead of $(MULTISUBDIR), use /`$$CC -print-multi-os-directory`.

* Makefile.in (install_to_tooldir): Instead of $(MULTISUBDIR), use
/`$$CC -print-multi-os-directory`.

From-SVN: r61938

21 years agoChangeLog file for zlib
Alexandre Oliva [Tue, 28 Jan 2003 01:48:38 +0000 (01:48 +0000)]
ChangeLog file for zlib

From-SVN: r61937

21 years agoaclocal.m4 (glibcpp_toolexeclibdir): Instead of $(MULTISUBDIR)...
Alexandre Oliva [Tue, 28 Jan 2003 01:48:33 +0000 (01:48 +0000)]
aclocal.m4 (glibcpp_toolexeclibdir): Instead of $(MULTISUBDIR)...

* aclocal.m4 (glibcpp_toolexeclibdir): Instead of
$(MULTISUBDIR), use `$CC -print-multi-os-directory`, unless
version_specific_libs is enabled.
* configure: Rebuilt.

From-SVN: r61936

21 years agoconfigure.in (toolexecdir, [...]): Set and AC_SUBST.
Alexandre Oliva [Tue, 28 Jan 2003 01:48:33 +0000 (01:48 +0000)]
configure.in (toolexecdir, [...]): Set and AC_SUBST.

* configure.in (toolexecdir, toolexeclibdir): Set and AC_SUBST.
Remove USE_LIBDIR conditional.
* Makefile.am (toolexecdir, toolexeclibdir): Don't override.
* Makefile.in, configure: Rebuilt.

[[Split portion of a mixed commit.]]

From-SVN: r61935.2

21 years agoconfigure.in (toolexecdir, [...]): Set and AC_SUBST.
Alexandre Oliva [Tue, 28 Jan 2003 01:44:58 +0000 (01:44 +0000)]
configure.in (toolexecdir, [...]): Set and AC_SUBST.

* configure.in (toolexecdir, toolexecmainlibdir, toolexeclibdir):
Set and AC_SUBST.  Remove USE_LIBDIR conditional.
* Makefile.am (toolexecdir, toolexeclibdir): Don't override.
(toolexecmainlib_DATA): Renamed from toolexeclib_DATA.
* Makefile.in, configure: Rebuilt.

From-SVN: r61931

21 years agoMakefile.in ($(LIBG2C)): -rpath is glibcpp_toolexeclibdir.
Alexandre Oliva [Tue, 28 Jan 2003 01:44:38 +0000 (01:44 +0000)]
Makefile.in ($(LIBG2C)): -rpath is glibcpp_toolexeclibdir.

* Makefile.in ($(LIBG2C)): -rpath is glibcpp_toolexeclibdir.
* aclocal.m4 (glibcpp_toolexeclibdir): Instead of
$(MULTISUBDIR), use `$CC -print-multi-os-directory`, unless
version_specific_libs is enabled.
* configure: Rebuilt.

From-SVN: r61927

21 years agoconfigure.in (toolexecdir, [...]): Set and AC_SUBST.
Alexandre Oliva [Tue, 28 Jan 2003 01:44:37 +0000 (01:44 +0000)]
configure.in (toolexecdir, [...]): Set and AC_SUBST.

* configure.in (toolexecdir, toolexeclibdir): Set and AC_SUBST.
Remove USE_LIBDIR conditional.
* Makefile.am (toolexecdir, toolexeclibdir): Don't override.
* Makefile.in, configure: Rebuilt.

From-SVN: r61926

21 years ago* libjava.lang/pr8823.xfail: New file, add "xfail-byte".
Kaveh R. Ghazi [Tue, 28 Jan 2003 01:34:49 +0000 (01:34 +0000)]
* libjava.lang/pr8823.xfail: New file, add "xfail-byte".

From-SVN: r61917

21 years agoMakefile.am (CONFIG_CXXFLAGS): Reverse order of @EXTRA_CXX_FLAGS@ @SECTION_FLAGS@.
Danny Smith [Tue, 28 Jan 2003 01:17:36 +0000 (01:17 +0000)]
Makefile.am (CONFIG_CXXFLAGS): Reverse order of @EXTRA_CXX_FLAGS@ @SECTION_FLAGS@.

* src/Makefile.am (CONFIG_CXXFLAGS): Reverse order of
@EXTRA_CXX_FLAGS@ @SECTION_FLAGS@.
* libsupc++/Makefile.am (CONFIG_CXXFLAGS): Likewise.
* src/Makefile.in: Regenerate.
* libsupc++/Makefile.in: Regenerate.

From-SVN: r61915

21 years agoDaily bump.
GCC Administrator [Tue, 28 Jan 2003 00:17:04 +0000 (00:17 +0000)]
Daily bump.

From-SVN: r61913

21 years agoclass.c (update_vtable_entry_for_fn): Add index parameter.
Nathan Sidwell [Mon, 27 Jan 2003 23:29:50 +0000 (23:29 +0000)]
class.c (update_vtable_entry_for_fn): Add index parameter.

cp:
* class.c (update_vtable_entry_for_fn): Add index parameter.
Generate vcall thunk for covariant overriding from a virtual
primary base.
(dfs_modify_vtables): Adjust.
testsuite:
* g++.dg/abi/covariant1.C: New test.

From-SVN: r61906

21 years agoMakefile.in (LIB2FUNCS_ST): Remove _gcov.
Nathan Sidwell [Mon, 27 Jan 2003 23:22:17 +0000 (23:22 +0000)]
Makefile.in (LIB2FUNCS_ST): Remove _gcov.

* Makefile.in (LIB2FUNCS_ST): Remove _gcov.
(LIBGCOV): New variable.
(libgcc.mk): Add LIBGCOV.
(LIBGCC_DEPS): Add libgcov.c.
(libgcov.a): New target.
(clean): Remove libgcov.a.
(install-libgcc): Do libgcov too.
(stage1-start, stage2-start, stage3-start, stage4-start): Deal
with libgcov.a.
* libgcc2.c (L_gcov): Move into ...
* libgcov.c: ... here. New file.
* mklibgcc.in: Add libgcov rules.
* gcc.c (LINK_COMMAND_SPEC): Add -lgcov when profiling.

* doc/invoke.texi (profile-arcs, test-coverage): Update and
clarify.

* profile.c (index_counts_file): Remove duplicate check for open file.

From-SVN: r61905

21 years agoMakefile.am (TARGET_SRC_POWERPC_AIX): Fix typo.
David Edelsohn [Mon, 27 Jan 2003 20:25:43 +0000 (15:25 -0500)]
Makefile.am (TARGET_SRC_POWERPC_AIX): Fix typo.

        * Makefile.am (TARGET_SRC_POWERPC_AIX): Fix typo.
        * Makefile.in: Regenerate.

From-SVN: r61899

21 years agoFix date of ChangeLog of previous revision.
Gerald Pfeifer [Mon, 27 Jan 2003 18:07:49 +0000 (18:07 +0000)]
Fix date of ChangeLog of previous revision.

From-SVN: r61898

21 years agoinvoke.texi (Optimization Options): Group together optional and experimental flags.
Jerry Quinn [Mon, 27 Jan 2003 18:06:39 +0000 (18:06 +0000)]
invoke.texi (Optimization Options): Group together optional and experimental flags.

* gcc/doc/invoke.texi (Optimization Options): Group together
optional and experimental flags.  Move trapv and bounds-check
out of this section.
(Code Gen Options): Move trapv and bounds-check to here.

From-SVN: r61897