- 22 May, 1999 5 commits
-
-
1999-05-22 Ben Elliston <bje@cygnus.com> * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake <jiro@din.or.jp>. From-SVN: r27094
Ben Elliston committed -
1999-05-22 Ben Elliston <bje@cygnus.com> * config.guess: Merge with FSF version. Future changes will be more accurately recorded in this ChangeLog. * config.sub: Likewise. From-SVN: r27093
Ben Elliston committed -
* cp-tree.h (cplus_expand_constant): Declare. * cvt.c (convert_to_pointer): Expand PTRMEM_CSTs when they're converted from one pointer-to-object type to another. * expr.c (cplus_expand_constant): Don't make it static. * typeck.c (build_component_ref): Don't crash when presented with a component which is a TEMPLATE_DECL. (build_ptrmemfunc): Tidy. Clarify comment. Make sure that even a cast from a pointer-to-member constant to its own type does not result in a valid non-type template argument. From-SVN: r27092
Mark Mitchell committed -
From-SVN: r27090
Mark Mitchell committed -
From-SVN: r27089
Jeff Law committed
-
- 21 May, 1999 9 commits
-
-
Fri May 21 21:19:02 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> * rs6000.c (output_mi_thunk): Enable full support again. From-SVN: r27087
Franz Sirl committed -
* Make-lang.in (cc1plus): Make it depend on gxx.gperf. * cp-tree.h: Fix typo in documentation on pointers-to-members. (cp_build_qualified_type): Make it a macro. (cp_build_qualified_type_real): Declare. * decl.c (grokdeclarator): Remove misleading comment. Avoid problem with template parameters and restrict-qualification. * gxx.gperf: Replace NORID with RID_UNUSED throughout. * hash.h: Regenerated. * lex.h (rid): Move RID_FIRST_MODIFIER and RID_LAST_MODIFIER into the enumeration. (NORID): Remove definition. * pt.c (tsubst_aggr_type): Use cp_build_qualified_type_real. (tsubst): Likewise. Remove special handling for FUNCTION_TYPEs. (fn_type_unification): Check that the function type resulting from the deduction is legal. (check_cv_quals_for_unify): Don't handle FUNCTION_TYPEs specially. (unify): Use cp_build_qualified_type_real. * tree.c (build_cplus_array_type_1): Handle error_marks as inputs. (cp_build_qualified_type): Rename to ... (cp_build_qualified_type_real): Add additional COMPLAIN parameter and modify appropriately. Co-Authored-By: Nathan Sidwell <nathan@acm.org> From-SVN: r27086
Mark Mitchell committed -
* typeck.c (build_ptrmemfunc): Handle PTRMEM_CSTs carefully to reveal optimization opportunities. From-SVN: r27084
Mark Mitchell committed -
* Makefile.in: Rebuilt. * Makefile.am (INCLUDES): Added $(ZINCS). * configure: Rebuilt. * configure.in (ZINCS): New subst. From-SVN: r27083
Tom Tromey committed -
From-SVN: r27082
Joern Rennecke committed -
From-SVN: r27081
J"orn Rennecke committed -
* pt.c (tsubst): Don't issue error messages when we're not complaining, even if we see a qualified function type. (check_cv_quals_for_unify): Don't allow a qualified function type. From-SVN: r27080
Mark Mitchell committed -
sparc-signal.h (INIT_FPE, INIT_SEGV): SA_NODEFER added to signal options to allow the same exceptions to be rethrown... 1999-05-21 Andrew Haley <aph@cygnus.com> * include/sparc-signal.h (INIT_FPE, INIT_SEGV): SA_NODEFER added to signal options to allow the same exceptions to be rethrown later. From-SVN: r27079
Andrew Haley committed -
From-SVN: r27077
Jeff Law committed
-
- 20 May, 1999 21 commits
-
-
Thu May 20 10:00:42 1999 Stephen L Moshier <moshier@world.std.com> * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include. From-SVN: r27074
Stephen L Moshier committed -
Thu May 20 10:00:42 1999 Stephen L Moshier <moshier@world.std.com> * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include. Thu May 20 09:58:57 1999 Jan Hubicka <hubicka@freesoft.cz> * function.c (assign_stack_local): Align stack slot propertly. (assign_outer_stack_local): Likewise. From-SVN: r27073
Jeff Law committed -
* class.c (instantiate_type): Downgrade errors for object-dependent memfn refs to pedwarn. From-SVN: r27072
Jason Merrill committed -
* decl.c (grokdeclarator): Don't treat [] as indicating a zero-sized array in a typedef. From-SVN: r27070
Mark Mitchell committed -
* call.c (build_object_call): Don't look at DECL_NAME for a type. (pt.c): Or CP_TYPE_QUALS for an ERROR_MARK. (typeck.c): Or TYPE_MAIN_VARIANT for a type. From-SVN: r27068
Mark Mitchell committed -
From-SVN: r27067
Mark Mitchell committed -
* pt.c (for_each_template_parm): Rework to match documentation. Don't be fooled by a COMPONENT_REF with no TREE_TYPE. From-SVN: r27066
Mark Mitchell committed -
* class.c (finish_struct_1): Still check for ANON_AGGR_TYPE_P. * class.c (finish_base_struct): Allow non-COM bases for COM classes except at the leftmost position. (modify_one_vtable, fixup_vtable_deltas1, override_one_vtable): Pass the binfo's class, not the most derived, to skip_rtti_stuff. * search.c (get_abstract_virtuals, expand_upcast_fixups): Likewise. From-SVN: r27065
Jason Merrill committed -
From-SVN: r27064
Jason Merrill committed -
* tree.c (lvalue_p_1): A NOP_EXPR can be an lvalue. (build_cplus_new): Make sure that what we return is of the right type. From-SVN: r27063
Jason Merrill committed -
* cp-tree.h (make_ptrmem_cst): New function. * expr.c (cplus_expand_constant): Split out from ... (cplus_expand_expr): Here. Use cplus_expand_constant. (init_cplus_expand): Set lang_expand_constant. * pt.c (convert_nontype_argument): Use make_ptrmem_cst. * tree.c (make_ptrmem_cst): Define. * typeck.c (unary_complex_lvalue): Use make_ptrmem_cst. * typeck2.c (initializer_constant_valid_p): Use make_ptrmem_cst. From-SVN: r27060
Mark Mitchell committed -
* expr.h (lang_expand_constant): Declare. * toplev.c (lang_expand_constant): Define it. * varasm.c (output_constant): Use it. From-SVN: r27058
Mark Mitchell committed -
* optabs.c (expand_cmplxdiv_straight, expand_cmplxdiv_wide): Change function definitions to K&R style. From-SVN: r27057
Kaveh R. Ghazi committed -
1999-05-20 Andrew Haley <aph@cygnus.com> * libjava/prims.cc (catch_fpe): Call to HANDLE_DIVIDE_OVERFLOW added. * include/i386-signal.h (HANDLE_DIVIDE_OVERFLOW): New macro. (INIT_FPE): Exception string made more informative. * include/sparc-signal.h (INIT_FPE): Exception string made more informative. * testsuite/libjava.lang/Divide_1.java: New file. * testsuite/libjava.lang/Divide_1.out: New file. From-SVN: r27056
Andrew Haley committed -
From-SVN: r27055
Bruce Korb committed -
From-SVN: r27052
Alexandre Oliva committed -
* configure.in (AC_PREREQ): Update to 2.13. (AC_EXEEXT): Call to find possible file extension. (compiler_name): Use. * configure: Regenerate. libio, libstdc++ * configure.in: Test for ${compiler_name}.exe as well. From-SVN: r27050
Jeff Law committed -
* config/dbxcoff.h (DBX_OUTPUT_MAIN_SOURCE_FILE_END): Use asm_fprintf and %L to generate the label name. * config/dbxelf.h (DBX_OUTPUT_MAIN_SOURCE_FILE_END): Likewise. (ASM_OUTPUT_SOURCE_LINE): Correct generation of internal labels. From-SVN: r27048
Andreas Schwab committed -
From-SVN: r27046
Jeff Law committed -
jump.c (can_reverse_comparison_p): Do not abort if the comparison insn for a conditional jump can not be found. p * jump.c (can_reverse_comparison_p): Do not abort if the comparison insn for a conditional jump can not be found. From-SVN: r27043
Jeff Law committed -
jump.c (can_reverse_comparison_p): Do not abort if the comparison insn for a conditional jump can not be found. � * jump.c (can_reverse_comparison_p): Do not abort if the comparison insn for a conditional jump can not be found. From-SVN: r27042
Jeff Law committed
-
- 19 May, 1999 5 commits
-
-
mips.h (ENCODE_SECTION_INFO): Do not perform GP optimizations on variables in specific sections other than... x * mips.h (ENCODE_SECTION_INFO): Do not perform GP optimizations on variables in specific sections other than .sbss and .sdata. From-SVN: r27038
Jeff Law committed -
mips.h (ENCODE_SECTION_INFO): Do not perform GP optimizations on variables in specific sections other than... � * mips.h (ENCODE_SECTION_INFO): Do not perform GP optimizations on variables in specific sections other than .sbss and .sdata. From-SVN: r27037
Jeff Law committed -
From-SVN: r27034
Mark Mitchell committed -
* aclocal.m4, configure: Rebuilt. * acinclude.m4 (version): New variable; pass to AM_INIT_AUTOMAKE. From-SVN: r27033
Tom Tromey committed -
* java/util/zip/GZIPOutputStream.java (write(byte[])): New method. From-SVN: r27031
Tom Tromey committed
-