OSDN Git Service

pf3gnuchains/gcc-fork.git
21 years ago * Makefile.tpl: Revert HJL's change.
neroden [Thu, 19 Dec 2002 20:23:50 +0000 (20:23 +0000)]
* Makefile.tpl: Revert HJL's change.
* Makefile.in: Regenerated.
* configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
always.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60326 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-19 Aldy Hernandez <aldyh@redhat.com>
aldyh [Thu, 19 Dec 2002 19:57:29 +0000 (19:57 +0000)]
2002-12-19  Aldy Hernandez  <aldyh@redhat.com>

PR 8553

* config/rs6000/altivec.md ("absv8hi2"): Add & to clobbered
registers.
("absv16qi2"): Same.
("absv4si2"): Same.
("absv4sf2"): Same.
("altivec_abss_v16qi"): Same.
("altivec_abss_v8hi"): Same.
("altivec_abss_v4si"): Same.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60324 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * config/s390/s390.md ("*tsthiCCT", "*tsthiCCT_cconly",
uweigand [Thu, 19 Dec 2002 19:55:12 +0000 (19:55 +0000)]
* config/s390/s390.md ("*tsthiCCT", "*tsthiCCT_cconly",
"*tstqiCCT", "*tstqiCCT_cconly"): New insns.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60322 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoadd PR# to last fix
aldyh [Thu, 19 Dec 2002 19:49:27 +0000 (19:49 +0000)]
add PR# to last fix

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60321 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * java/lang/natClassLoader.cc (defineClass0): Removed erroneous
tromey [Thu, 19 Dec 2002 19:31:55 +0000 (19:31 +0000)]
* java/lang/natClassLoader.cc (defineClass0): Removed erroneous
comment.
* java/lang/ClassLoader.java (defineClass): Use chained
exception when rethrowing.
* defineclass.cc (handleClassBegin): Mark class as interpreted.
* java/lang/reflect/Modifier.java (INVISIBLE, INTERPRETED): New
constants.
* resolve.cc (_Jv_PrepareMissingMethods): New function.
(_Jv_PrepareClass): Use it.
* include/java-interp.h (_Jv_IsInterpretedClass): Rewrote.
(_Jv_InterpClass): _Jv_PrepareMissingMethods now friend.
* java/lang/Class.h (Class::getModifiers): Mask with ALL_FLAGS.
(Class): _Jv_PrepareMissingMethods now friend.
* java/lang/natClassLoader.cc (defineClass0): Use JvSynchronize.
Record `NULL' for system class loader.
(_Jv_RegisterInitiatingLoader): Use JvSynchronize.  Special case
system class loader.
(_Jv_FindClassInCache): Likewise.
(_Jv_UnregisterClass): Use JvSynchronize.  Free old loader info.
(_Jv_FindClass): Special case system class loader.
* java/lang/natClass.cc (_Jv_abstractMethodError): New function.
(_Jv_SetVTableEntries): Put _Jv_abstractMethodError into empty
vtable slots.
(_Jv_LayoutVTableMethods): Don't generate vtable slot for a method
in a final class.
(_getDeclaredMethod): Don't return synthetic methods.
(getDeclaredMethods): Likewise.
(_getMethod): Likewise.
(_getMethods): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60319 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agotweak
jason [Thu, 19 Dec 2002 18:25:03 +0000 (18:25 +0000)]
tweak

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60316 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago Handle anonymous unions at the tree level.
jason [Thu, 19 Dec 2002 17:43:54 +0000 (17:43 +0000)]
    Handle anonymous unions at the tree level.
        C++ ABI change: Mangle anonymous unions using the name of their
        first named field (by depth-first search).  Should not cause
        binary compatibility problems, though, as the compiler previously
        didn't emit anything for affected unions.
        * cp-tree.def (ALIAS_DECL): New tree code.
        * decl2.c (build_anon_union_vars): Build ALIAS_DECLs.  Return the
        first field, not the largest.
        (finish_anon_union): Don't mess with RTL.  Do set DECL_ASSEMBLER_NAME,
        push the decl, and write it out at namespace scope.
        * decl.c (lookup_name_real): See through an ALIAS_DECL.
        (pushdecl): Add namespace bindings for ALIAS_DECLs.
        * rtti.c (unemitted_tinfo_decl_p): Don't try to look at the name
        of a decl which doesn't have one.
        * typeck.c (build_class_member_access_expr): Don't recurse if
        we already have the type we want.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60315 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago Handle anonymous unions at the tree level.
jason [Thu, 19 Dec 2002 17:16:26 +0000 (17:16 +0000)]
    Handle anonymous unions at the tree level.
        C++ ABI change: Mangle anonymous unions using the name of their
        first named field (by depth-first search).  Should not cause
        binary compatibility problems, though, as the compiler previously
        didn't emit anything for affected unions.
        * cp-tree.def (ALIAS_DECL): New tree code.
        * decl2.c (build_anon_union_vars): Build ALIAS_DECLs.  Return the
        first field, not the largest.
        (finish_anon_union): Don't mess with RTL.  Do set DECL_ASSEMBLER_NAME,
        push the decl, and write it out at namespace scope.
        * decl.c (lookup_name_real): See through an ALIAS_DECL.
        (pushdecl): Add namespace bindings for ALIAS_DECLs.
        * rtti.c (unemitted_tinfo_decl_p): Don't try to look at the name
        of a decl which doesn't have one.
        * typeck.c (build_class_member_access_expr): Don't recurse if
        we already have the type we want.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60314 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago PR target/8340
ebotcazou [Thu, 19 Dec 2002 17:06:46 +0000 (17:06 +0000)]
PR target/8340
* stmt.c (expand_asm_operands): Produce an error when
the PIC register is clobbered.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60313 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-18 Daniel Berlin <dberlin@dberlin.org>
dberlin [Thu, 19 Dec 2002 15:53:46 +0000 (15:53 +0000)]
2002-12-18  Daniel Berlin  <dberlin@dberlin.org>

* Makefile.in (OBJS): Add alloc-pool.o
(alloc-pool.o): New object.

* alloc-pool.c: New file.
* alloc-pool.h: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60312 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago PR c++/8099
lerdsuwa [Thu, 19 Dec 2002 15:11:29 +0000 (15:11 +0000)]
PR c++/8099
* friend.c (make_friend_class): Allow partial specialization
when declaration is not a template friend.

* g++.dg/template/friend9.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60308 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago PR c++/3663
lerdsuwa [Thu, 19 Dec 2002 14:45:19 +0000 (14:45 +0000)]
PR c++/3663
* pt.c (lookup_template_class): Copy TREE_PRIVATE and
TREE_PROTECTED to created decl nodes.

* g++.dg/template/access7.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60307 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * intdoc.in: Fix typos.
kazu [Thu, 19 Dec 2002 14:27:13 +0000 (14:27 +0000)]
* intdoc.in: Fix typos.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60306 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
schwab [Thu, 19 Dec 2002 11:01:21 +0000 (11:01 +0000)]
* Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
* Makefile.in: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60303 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-18 Benjamin Kosnik <bkoz@redhat.com>
bkoz [Thu, 19 Dec 2002 08:18:14 +0000 (08:18 +0000)]
2002-12-18  Benjamin Kosnik  <bkoz@redhat.com>

  * docs/html/documentation.html: Add link for debug.html.
* docs/html/debug.html: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60302 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoDaily bump.
gccadmin [Thu, 19 Dec 2002 08:18:11 +0000 (08:18 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60301 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoomit needless braces
jason [Thu, 19 Dec 2002 07:29:28 +0000 (07:29 +0000)]
omit needless braces

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60293 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-18 Raif Naffah <raif@fl.net.au>
tromey [Thu, 19 Dec 2002 06:59:46 +0000 (06:59 +0000)]
2002-12-18  Raif Naffah  <raif@fl.net.au>

* java/math/BigInteger.java (euclidInv): Make sure quot and rem are in
canonical form after divide().
(modInverse): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60292 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-18 Andrew Haley <aph@redhat.com>
tromey [Thu, 19 Dec 2002 06:43:12 +0000 (06:43 +0000)]
2002-12-18  Andrew Haley  <aph@redhat.com>

* parse.y (patch_invoke): Force evaluation order when `check' is
set.  For PR libgcj/8945.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60290 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * libjava.lang/pr8945.java: New file.
tromey [Thu, 19 Dec 2002 06:40:03 +0000 (06:40 +0000)]
* libjava.lang/pr8945.java: New file.
* libjava.lang/pr8945.out: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60286 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-18 Loren James Rittle <rittle@labs.mot.com>
geoffk [Thu, 19 Dec 2002 05:22:53 +0000 (05:22 +0000)]
2002-12-18  Loren James Rittle  <rittle@labs.mot.com>

* gcc.c (validate_switches): Robustify against skipping past '\0'.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60283 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * config.gcc: Set extra_objs in the generic Darwin rule,
geoffk [Thu, 19 Dec 2002 05:19:47 +0000 (05:19 +0000)]
* config.gcc: Set extra_objs in the generic Darwin rule,
not in the machine-specific rules.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60282 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * ChangeLog: Follow spelling conventions.
kazu [Thu, 19 Dec 2002 05:18:13 +0000 (05:18 +0000)]
* ChangeLog: Follow spelling conventions.
* ChangeLog.2: Likewise.
* ChangeLog.4: Likewise.
* ChangeLog.5: Likewise.
* cppexp.c: Likewise.
* df.c: Likewise.
* gcov.c: Likewise.
* gengtype.c: Likewise.
* reload1.c: Likewise.
* sched-rgn.c: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* timevar.c: Likewise.
* toplev.c: Likewise.
* tree.h: Likewise.
* varasm.c: Likewise.
* config/fr30/fr30.md: Likewise.
* config/i386/i386.c: Likewise.
* config/ia64/ia64.c: Likewise.
* config/pa/pa.c: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60281 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * basic-block.h (flow_bb_inside_loop_p): Correct prototype.
sayle [Thu, 19 Dec 2002 02:59:15 +0000 (02:59 +0000)]
* basic-block.h (flow_bb_inside_loop_p): Correct prototype.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60279 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * class.c (build_base_field): Do not set DECL_PACKED on the
mmitchel [Thu, 19 Dec 2002 02:31:50 +0000 (02:31 +0000)]
* class.c (build_base_field): Do not set DECL_PACKED on the
FIELD_DECL.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60277 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * testsuite/23_containers/vector_capacity.cc (test03): Move ...
ghazi [Thu, 19 Dec 2002 01:54:59 +0000 (01:54 +0000)]
* testsuite/23_containers/vector_capacity.cc (test03): Move ...
* testsuite/23_containers/vector_resize.cc: ...here as a new file.
Pass in -lmalloc for irix6.
* testsuite/27_io/ios_base_storage.cc: Pass in -lmalloc for irix6.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60276 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-18 H.J. Lu <hjl@gnu.org>
hjl [Thu, 19 Dec 2002 00:51:33 +0000 (00:51 +0000)]
2002-12-18  H.J. Lu <hjl@gnu.org>

* Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
* Makefile.in: Regenerated.

* configure.in (build_prefix): New. Substitute.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60272 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * g77.texi: Fix typos.
kazu [Thu, 19 Dec 2002 00:27:52 +0000 (00:27 +0000)]
* g77.texi: Fix typos.
* intdoc.texi: Likewise.
* news.texi: Follow spelling conventions.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60271 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-18 Aldy Hernandez <aldyh@redhat.com>
aldyh [Wed, 18 Dec 2002 23:44:18 +0000 (23:44 +0000)]
2002-12-18  Aldy Hernandez  <aldyh@redhat.com>

* config/rs6000/altivec.h (vec_cmplt macro): Reverse arguments in
macro.
(vec_cmplt C++ functions): Reverse arguments.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60269 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * config/rs6000/t-rs6000: Move contents to t-fprules,
geoffk [Wed, 18 Dec 2002 22:45:36 +0000 (22:45 +0000)]
* config/rs6000/t-rs6000: Move contents to t-fprules,
add rules for dependencies of rs6000.o and to build rs6000-c.o
* config/rs6000/t-fprules: New file from t-rs6000.
* config/rs6000/t-beos: Remove soft-fp rules.
* config/rs6000/t-ppccomm: Likewise.
* config/rs6000/t-newas: Likewise.
* config/rs6000/t-rs6000-c-rule: Delete.
* config.gcc: Use t-fprules for rs6000/ ports when appropriate.
Use t-rs6000 for all rs6000/ ports instead of t-rs6000-c-rule.
Create generic Darwin rules.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60265 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * gengenrtl.c (gencode): Delete unnecessary rtl_obstack declaration.
geoffk [Wed, 18 Dec 2002 22:37:49 +0000 (22:37 +0000)]
* gengenrtl.c (gencode): Delete unnecessary rtl_obstack declaration.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60264 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agonew test
jason [Wed, 18 Dec 2002 20:00:28 +0000 (20:00 +0000)]
new test

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60263 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * m32r/m32r.c (addr24_operand): Fix arg to CONSTANT_POOL_ADDRESS_P
devans [Wed, 18 Dec 2002 19:23:58 +0000 (19:23 +0000)]
* m32r/m32r.c (addr24_operand): Fix arg to CONSTANT_POOL_ADDRESS_P
and LIT_NAME_P.
(move_src_operand): Remove compile-time warning.
* m32r/m32r.h (ROUND_ADVANCE_ARG): Ditto.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60262 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * Makefile.tpl: Don't let real targets depend on phony targets.
neroden [Wed, 18 Dec 2002 18:34:22 +0000 (18:34 +0000)]
* Makefile.tpl: Don't let real targets depend on phony targets.
* Makefile.in: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60261 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago PR c++/8674
jason [Wed, 18 Dec 2002 16:43:20 +0000 (16:43 +0000)]
    PR c++/8674
        * call.c (build_over_call): Check specifically for TARGET_EXPR
        when eliding.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60260 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago PR c++/6255
jason [Wed, 18 Dec 2002 16:42:23 +0000 (16:42 +0000)]
    PR c++/6255
        * decl.c (lookup_name_real): Build a new TYPENAME_TYPE rather than
        modifying the old one.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60259 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agonew test
jason [Wed, 18 Dec 2002 16:41:11 +0000 (16:41 +0000)]
new test

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60258 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * libU77/date_.c (G77_date_y2kbuggy_0): Declare G77_abort_0 noreturn.
jason [Wed, 18 Dec 2002 16:37:14 +0000 (16:37 +0000)]
    * libU77/date_.c (G77_date_y2kbuggy_0): Declare G77_abort_0 noreturn.
        * libU77/vxtidate_.c (G77_vxtidate_y2kbuggy_0): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60256 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * src/vterminate.cc (__verbose_terminate_handler): Send
jason [Wed, 18 Dec 2002 16:31:35 +0000 (16:31 +0000)]
    * src/vterminate.cc (__verbose_terminate_handler): Send
        diagnostics to stderr.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60254 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * unwind-dw2-fde.c (frame_downheap): Split out from...
jason [Wed, 18 Dec 2002 16:27:56 +0000 (16:27 +0000)]
    * unwind-dw2-fde.c (frame_downheap): Split out from...
        (frame_heapsort): Here.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60253 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoOnly invoke testsuite_flags if the libstdc++-v3 directory has been found.
nickc [Wed, 18 Dec 2002 15:50:40 +0000 (15:50 +0000)]
Only invoke testsuite_flags if the libstdc++-v3 directory has been found.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60252 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * cp-tree.h (struct tree_srcloc): Use location_t.
gdr [Wed, 18 Dec 2002 13:07:42 +0000 (13:07 +0000)]
    * cp-tree.h (struct tree_srcloc): Use location_t.
        (SOURCE_LOCUS): New.
        (SRCLOC_FILE, SRCLOC_LINE): Adjust.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60247 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoDaily bump.
gccadmin [Wed, 18 Dec 2002 08:17:54 +0000 (08:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60244 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * tree.c (make_node): Don't set TREE_TYPE on 's' class nodes.
jason [Wed, 18 Dec 2002 06:36:51 +0000 (06:36 +0000)]
    * tree.c (make_node): Don't set TREE_TYPE on 's' class nodes.
        (build1): Always set TREE_SIDE_EFFECTS on 's' class nodes.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60237 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * decl.c (finish_function): Also complain about no return in
jason [Wed, 18 Dec 2002 06:26:58 +0000 (06:26 +0000)]
    * decl.c (finish_function): Also complain about no return in
        templates.
        * semantics.c (finish_return_stmt): Also call check_return_expr in
        templates.
        * typeck.c (check_return_expr): In a template, just remember that we
        saw a return.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60236 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * gcc.c (do_spec_1) ['W']: End any pending argument from the braces.
jason [Wed, 18 Dec 2002 06:07:26 +0000 (06:07 +0000)]
    * gcc.c (do_spec_1) ['W']: End any pending argument from the braces.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60235 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * calls.c (expand_call): Don't try to be clever about expanding
jason [Wed, 18 Dec 2002 05:57:43 +0000 (05:57 +0000)]
    * calls.c (expand_call): Don't try to be clever about expanding
        the return slot address.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60234 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
neroden [Wed, 18 Dec 2002 05:28:41 +0000 (05:28 +0000)]
2002-12-18  Nathanael Nerode  <neroden@gcc.gnu.org>

* Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
* Makefile.in: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60233 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * config/sh/linux.h (NO_IMPLICIT_EXTERN_C, CPLUSPLUS_CPP_SPEC):
kkojima [Wed, 18 Dec 2002 02:26:03 +0000 (02:26 +0000)]
* config/sh/linux.h (NO_IMPLICIT_EXTERN_C, CPLUSPLUS_CPP_SPEC):
Define.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60231 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * configure.in: Define with_target_subdir and with_build_subdir
uweigand [Wed, 18 Dec 2002 01:18:58 +0000 (01:18 +0000)]
* configure.in: Define with_target_subdir and with_build_subdir
variables in config-ml.in AC_OUTPUT call.
* configure: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60230 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * calls.c (expand_call): Handle CALL_EXPR_HAS_RETURN_SLOT_ADDR
jason [Tue, 17 Dec 2002 21:29:29 +0000 (21:29 +0000)]
    * calls.c (expand_call): Handle CALL_EXPR_HAS_RETURN_SLOT_ADDR
        with special struct-return ABIs.

cp/
        * semantics.c (simplify_aggr_init_exprs_r): Don't change the type
        of the CALL_EXPR.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60223 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * genmultilib: Use 'cd ./foo'.
jason [Tue, 17 Dec 2002 21:17:35 +0000 (21:17 +0000)]
    * genmultilib: Use 'cd ./foo'.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60222 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * doc/c-tree.texi: Restore deliberate spelling mistakes.
kazu [Tue, 17 Dec 2002 19:59:45 +0000 (19:59 +0000)]
* doc/c-tree.texi: Restore deliberate spelling mistakes.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60219 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * doc/c-tree.texi: Fix typos and follow spelling conventions.
kazu [Tue, 17 Dec 2002 16:47:45 +0000 (16:47 +0000)]
* doc/c-tree.texi: Fix typos and follow spelling conventions.
* doc/cpp.texi: Likewise.
* doc/extend.texi: Likewise.
* doc/gty.texi: Likewise.
* doc/install.texi: Likewise.
* doc/invoke.texi: Likewise.
* doc/md.texi: Likewise.
* doc/passes.texi: Likewise.
* doc/rtl.texi: Likewise.
* doc/sourcebuild.texi: Likewise.
* doc/tm.texi: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60213 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * doc/invoke.texi: Minor spelling and grammar fixes.
kazu [Tue, 17 Dec 2002 14:38:59 +0000 (14:38 +0000)]
* doc/invoke.texi: Minor spelling and grammar fixes.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60212 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * config/s390/s390.c (s390_output_constant_pool): Replace
uweigand [Tue, 17 Dec 2002 12:38:58 +0000 (12:38 +0000)]
* config/s390/s390.c (s390_output_constant_pool): Replace
ASM_OUTPUT_INTERNAL_LABEL by (*targetm.asm_out.internal_label).

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60208 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * config.sub: Import from master repository
sveinse [Tue, 17 Dec 2002 10:01:10 +0000 (10:01 +0000)]
* config.sub: Import from master repository
* config.guess: Ditto

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60207 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * convert.c (convert_to_real): Disable function transformation for
hubicka [Tue, 17 Dec 2002 08:50:41 +0000 (08:50 +0000)]
* convert.c (convert_to_real): Disable function transformation for
now.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60206 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoDaily bump.
gccadmin [Tue, 17 Dec 2002 08:17:34 +0000 (08:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60205 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * gcc.c (handle_braces): Allow '@' as a switch name.
geoffk [Tue, 17 Dec 2002 07:49:32 +0000 (07:49 +0000)]
* gcc.c (handle_braces): Allow '@' as a switch name.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60198 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * c-semantics.c (add_scope_stmt): Abort if the end SCOPE_STMT
jason [Tue, 17 Dec 2002 06:24:02 +0000 (06:24 +0000)]
    * c-semantics.c (add_scope_stmt): Abort if the end SCOPE_STMT
        doesn't match the begin SCOPE_STMT in partialness.

cp/
        * semantics.c (do_pushlevel): Call pushlevel after adding the
        SCOPE_STMT.
        (do_poplevel): Call poplevel before adding the SCOPE_STMT.
        * parse.y (function_body): Go back to using compstmt.
        * decl.c (pushdecl): Skip another level to get to the parms level.

        * call.c (build_new_method_call): Use is_dummy_object to determine
        whether or not to evaluate the object parameter to a static member
        function.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60196 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * genmultilib: Create temporary files in unique subdirectory.
geoffk [Tue, 17 Dec 2002 05:23:07 +0000 (05:23 +0000)]
* genmultilib: Create temporary files in unique subdirectory.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60195 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * gcc.c (validate_switches): Allow '@' as a switch name.
geoffk [Tue, 17 Dec 2002 05:18:51 +0000 (05:18 +0000)]
* gcc.c (validate_switches): Allow '@' as a switch name.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60194 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
jason [Tue, 17 Dec 2002 05:10:23 +0000 (05:10 +0000)]
    * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
        previous 'make bootstrap'.
        * Makefile.in: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60193 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
hp [Tue, 17 Dec 2002 04:32:25 +0000 (04:32 +0000)]
* configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60192 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago* mh-cygwin: Don't build libtermcap if it doesn't exist.
cgf [Tue, 17 Dec 2002 02:58:05 +0000 (02:58 +0000)]
* mh-cygwin: Don't build libtermcap if it doesn't exist.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60191 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * Makefile.in (gcov-iov.h): Improve portability.
ljrittle [Tue, 17 Dec 2002 02:02:48 +0000 (02:02 +0000)]
* Makefile.in (gcov-iov.h): Improve portability.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60190 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * mips.h (ASM_OUTPUT_ADDR_DIFF_ELT): Do not use qpword on API_N32/not
hubicka [Mon, 16 Dec 2002 22:45:41 +0000 (22:45 +0000)]
* mips.h (ASM_OUTPUT_ADDR_DIFF_ELT): Do not use qpword on API_N32/not
gas
* mips.md (tablejump insn): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60188 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * root.texi: Change version number to 3.4.
mmitchel [Mon, 16 Dec 2002 22:18:33 +0000 (22:18 +0000)]
* root.texi: Change version number to 3.4.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60185 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * doc/include/gcc-common.texi: Change version number to 3.4.
mmitchel [Mon, 16 Dec 2002 21:59:43 +0000 (21:59 +0000)]
* doc/include/gcc-common.texi: Change version number to 3.4.

* gcj.texi: Change version number to 3.4.

* root.texi: Change version number to 3.4.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60183 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoadd PR reference
jason [Mon, 16 Dec 2002 20:52:22 +0000 (20:52 +0000)]
add PR reference

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60182 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-16 Paolo Carlini <pcarlini@unitus.it>
paolo [Mon, 16 Dec 2002 19:52:37 +0000 (19:52 +0000)]
2002-12-16  Paolo Carlini  <pcarlini@unitus.it>

PR libstdc++/8949
* include/std/std_limits.h
(struct numeric_limits<short>,
struct numeric_limits<unsigned short>,
struct numeric_limits<int>,
struct numeric_limits<unsigned int>,
struct numeric_limits<long>,
struct numeric_limits<unsigned long>,
struct numeric_limits<long long>,
struct numeric_limits<unsigned long long>): According
to 18.2.1.2,53 and 18.2.1.5,1 is_iec559 shall be false.
* testsuite/18_support/numeric_limits.cc: Add test04.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60181 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agooops.
korbb [Mon, 16 Dec 2002 19:02:09 +0000 (19:02 +0000)]
oops.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60178 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-16 Benjamin Kosnik <bkoz@redhat.com>
bkoz [Mon, 16 Dec 2002 19:02:01 +0000 (19:02 +0000)]
2002-12-16  Benjamin Kosnik  <bkoz@redhat.com>

        * configure.in (GLIBCPP_ENABLE_DEBUG): Default to none.
Call GLIBCPP_ENABLE_DEBUG_FLAGS.
        * acinclude.m4 (GLIBCPP_ENABLE_DEBUG): GLIBCPP_BUILD_DEBUG, new
        conditional if --enable-debug is yes. Rework.
(GLIBCPP_ENABLE_DEBUG_FLAGS): New.
        * aclocal.m4: Regenerate.
* libio/Makefile.am: Remove DEBUG_FLAGS.
* libio/Makefile.in: Regenerate.
* libsupc++/Makefile.am: Remove DEBUG_FLAGS.
* libsupc++/Makefile.in: Regenerate.
* docs/html/configopts.html: Add docs for --enable-debug,
--enable-debug-flags.

2002-12-16  Benjamin Kosnik  <bkoz@redhat.com>

Correct dependency tracking, build warts.
* configure.in: Correct repeated AC_OUTPUT thrashing by
config-ml.in
* configure: Regenerate.
* include/Makefile.am (stamp-target): Stamp in top_builddir.
* include/Makefile.in: Regenerate.
* src/Makefile.am (codecvt_members.cc): New rule.
(collate_members.cc): Same.
(ctype_members.cc): Same.
(messages_members.cc): Same.
(monetary_members.cc): Same.
(numeric_members.cc): Same.
(time_members.cc): Same.
(c++locale.cc): Same.
(basic_file.cc): Same.
* src/Makefile.in: Regenerate.
* acinclude.m4 (CCTYPE_CHAR_CC): Remove.
(CCCODECVT_CC): Don't link, AC_SUBST.
(CCOLLATE_CC): Same.
(CCTYPE_CC): Same.
(CMESSAGES_CC): Same.
(CMONEY_CC): Same.
(CNUMERIC_CC): Same.
(CTIME_CC): Same.
(CLOCALE_CC): Same.
* aclocal.m4: Regenerate.

* src/Makefile.am (libstdc___la_LIBADD): Use top_builddir
for convenience libraries.
(version_arg): Rename linker.map to libstdc++.ver.
(libstdc___la_DEPENDENCIES): Remove linker.map, add
libstdc++-symbol.ver as a dependency.
(libstdc++-symbol.ver): Add rule.
* acinclude.m4 (GLIBCPP_ENABLE_SYMVERS): Change LINKER_MAP to
SYMVER_MAP. Don't link, AC_SUBST.

* include/Makefile.am (target_headers_noinst): New.
(stamp-target): Add CLOCALE_INTERNAL_H.
* acinclude.m4 (GLIBCPP_ENABLE_CLOCALE): Don't link
CLOCALE_INTERNAL_H, AC_SUBST.
* config/locale/gnu/c_locale.cc: Modify c++locale_internal.h
include.
* config/locale/gnu/time_members.cc: Same.
* config/locale/gnu/numeric_members.cc: Same.
* config/locale/gnu/monetary_members.cc: Same.
* config/locale/gnu/messages_members.cc: Same.
* config/locale/gnu/ctype_members.cc: Same.
* config/locale/gnu/collate_members.cc: Same.
* config/locale/gnu/codecvt_members.cc: Same.
* config/locale/generic/codecvt_members.cc: Remove.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60177 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agomove inclusion of signal.h
korbb [Mon, 16 Dec 2002 18:58:42 +0000 (18:58 +0000)]
move inclusion of signal.h

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60176 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoMerge basic-improvements-branch to trunk
zack [Mon, 16 Dec 2002 18:23:00 +0000 (18:23 +0000)]
Merge basic-improvements-branch to trunk

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60174 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * sh.h (EXTRA_CONSTRAINT_Z): New macro.
amylaar [Mon, 16 Dec 2002 17:21:50 +0000 (17:21 +0000)]
* sh.h (EXTRA_CONSTRAINT_Z): New macro.
(EXTRA_CONSTRAINT): Use it.
* sh.md (anddi3): Use 'Z' constraint for alternative 2.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60173 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoDaily bump.
gccadmin [Mon, 16 Dec 2002 08:17:31 +0000 (08:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60172 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agofix my email address
devans [Mon, 16 Dec 2002 08:16:06 +0000 (08:16 +0000)]
fix my email address

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60165 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * sem_ch6.adb (Analyze_Subprogram_Body): Fix typo and formatting
bosch [Sun, 15 Dec 2002 17:32:01 +0000 (17:32 +0000)]
* sem_ch6.adb (Analyze_Subprogram_Body): Fix typo and formatting

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60159 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * sem_ch6.adb (Analyze_Subprogram_Body): Recognize additional
bosch [Sun, 15 Dec 2002 16:18:20 +0000 (16:18 +0000)]
* sem_ch6.adb (Analyze_Subprogram_Body): Recognize additional
        case of a body created for a Renaming_As_Body, on which
        conformance checks are not performed. Fixes PR ada/5690.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60158 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoRevert last commit due to freeze.
rsandifo [Sun, 15 Dec 2002 12:05:34 +0000 (12:05 +0000)]
Revert last commit due to freeze.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60157 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * config/mips/mips.md: Disable the movstrsi define_split.
rsandifo [Sun, 15 Dec 2002 11:34:17 +0000 (11:34 +0000)]
* config/mips/mips.md: Disable the movstrsi define_split.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60156 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoDaily bump.
gccadmin [Sun, 15 Dec 2002 08:17:26 +0000 (08:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60154 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
jason [Sat, 14 Dec 2002 08:37:12 +0000 (08:37 +0000)]
    * Makefile.tpl (check-gcc-c++): Renamed from check-c++.  Don't run
        library tests.
        (check-c++): Just depend on it and check-target-libstdc++-v3.
        * Makefile.in: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60126 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoDaily bump.
gccadmin [Sat, 14 Dec 2002 08:17:21 +0000 (08:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60125 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * pa.c (output_millicode_call): Correct typo.
danglin [Sat, 14 Dec 2002 02:54:14 +0000 (02:54 +0000)]
* pa.c (output_millicode_call): Correct typo.
(output_call): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60115 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoFix test for LP64, move it to gcc.c-torture/compile (per Kaveh Ghazi)
dalej [Sat, 14 Dec 2002 00:54:02 +0000 (00:54 +0000)]
Fix test for LP64, move it to gcc.c-torture/compile (per Kaveh Ghazi)

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60111 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago* config/mn10300/mn10300.c (print_operand) <case N>: Check
aoliva [Fri, 13 Dec 2002 23:07:47 +0000 (23:07 +0000)]
* config/mn10300/mn10300.c (print_operand) <case N>: Check
operand's range.  Print value directly, without aid from
output_address.
<case U>: New.
<case S>: Make sure argument to fprintf has the right type.
* config/mn10300/mn10300.h (OK_FOR_T): New macro.
(EXTRA_CONSTRAINT): Adjust.
* config/mn10300/mn10300.md: Add new all-QImode pattern for
bclr.  Use %U for immediate operands of bset and bclr.
(iorqi3): New expand, with insns for AM33 and mn10300.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60109 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * Makefile.in (check-gcc-c++): Renamed from check-c++. Don't run
jason [Fri, 13 Dec 2002 22:26:37 +0000 (22:26 +0000)]
    * Makefile.in (check-gcc-c++): Renamed from check-c++.  Don't run
        library tests.
        (check-c++): Just depend on it and check-target-libstdc++-v3.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60107 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoPR C++/8031
gdr [Fri, 13 Dec 2002 21:58:54 +0000 (21:58 +0000)]
PR C++/8031
* cvt.c (convert_to_pointer_force): Don't try comparing against
erronous type.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60106 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * cp-tree.h: Have the multiple-include guards around
geoffk [Fri, 13 Dec 2002 21:04:27 +0000 (21:04 +0000)]
* cp-tree.h: Have the multiple-include guards around
the entire file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60104 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago*** empty log message ***
amylaar [Fri, 13 Dec 2002 20:20:28 +0000 (20:20 +0000)]
*** empty log message ***

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60103 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoFix type.
dpatel [Fri, 13 Dec 2002 20:16:07 +0000 (20:16 +0000)]
Fix type.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60102 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoDoc fix for PR 1621.
wilson [Fri, 13 Dec 2002 20:07:15 +0000 (20:07 +0000)]
Doc fix for PR 1621.
* doc/extend.texi (Complex Numbers): Update info on debug info.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60101 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago2002-12-13 Casey Marshall <rsdio@metastatic.org>
mark [Fri, 13 Dec 2002 14:21:07 +0000 (14:21 +0000)]
2002-12-13  Casey Marshall  <rsdio@metastatic.org>
    Mark Wielaard  <mark@klomp.org>

* java/security/SecurityRandom (digest): Removed field.
(SecureRandom): Check all providers for case-insensitive SecureRandom
implementation. Don't ignore classname == null. Fallback to SHA1PRNG
if necessary.
(getInstance(String,Provider,boolean): New method.
(getInstance(String)): Use new method.
(getInstance(String,String)): Likewise.
(getInstance(String,Provider)): Likewise.

2002-12-13  Casey Marshall  <rsdio@metastatic.org>

* java/security/Security.java (loadProviders): Increment i only once.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60099 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * config/h8300/h8300.md (addhi3_h8300): Remove the last
kazu [Fri, 13 Dec 2002 13:47:12 +0000 (13:47 +0000)]
* config/h8300/h8300.md (addhi3_h8300): Remove the last
alternative.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60098 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * java/lang/ClassLoader.java (resolveClass0): Transform
mark [Fri, 13 Dec 2002 10:04:15 +0000 (10:04 +0000)]
* java/lang/ClassLoader.java (resolveClass0): Transform
ClassNotFoundException to NoClassDefFoundError. Transform all other
throwables to LinkageError.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60097 138bc75d-0d04-0410-961f-82ee72b054a4

21 years agoDaily bump.
gccadmin [Fri, 13 Dec 2002 08:17:16 +0000 (08:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60096 138bc75d-0d04-0410-961f-82ee72b054a4

21 years ago * libjava.loader/loader.exp (gcj_loader_test_one): Use
tromey [Fri, 13 Dec 2002 05:00:15 +0000 (05:00 +0000)]
* libjava.loader/loader.exp (gcj_loader_test_one): Use
libjava_prune_warnings.
(gcj_loader_run): Likewise.
* libjava.mauve/mauve.exp (test_mauve): Use
libjava_prune_warnings.
(test_mauve_sim): Likewise.
* libjava.jni/jni.exp (gcj_jni_compile_c_to_so): Use
libjava_prune_warnings.
(gcj_jni_build_header): Likewise.
* lib/libjava.exp (libjava_prune_warnings): New proc.
(gcj_link): Use it.
(test_libjava_from_source): Likewise.
(test_libjava_from_javac): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60089 138bc75d-0d04-0410-961f-82ee72b054a4