diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-07-22 20:09:56 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-07-22 20:09:56 +0000 |
commit | c8d99a034c0433d663255476b39af4a7ed758f0d (patch) | |
tree | 4638c3cb7d6ba8fd7bb4cb81d27af1df703d3179 /gnu/egcs/gcc/cp | |
parent | c93f59c4d504ed124659cc25a2730d447a1c8c1d (diff) |
990718, very close to release.
testsuite temporarily removed from snapshots because of copyright checks.
Diffstat (limited to 'gnu/egcs/gcc/cp')
-rw-r--r-- | gnu/egcs/gcc/cp/ChangeLog | 28 | ||||
-rw-r--r-- | gnu/egcs/gcc/cp/typeck2.c | 8 |
2 files changed, 32 insertions, 4 deletions
diff --git a/gnu/egcs/gcc/cp/ChangeLog b/gnu/egcs/gcc/cp/ChangeLog index 7c0d65044ba..a52af365e48 100644 --- a/gnu/egcs/gcc/cp/ChangeLog +++ b/gnu/egcs/gcc/cp/ChangeLog @@ -1,3 +1,31 @@ +Sat Jul 17 23:50:47 1999 Jeffrey A Law (law@cygnus.com) + + * Makefile.in (INTERFACE): Bump to 2. + +1999-07-17 Alexandre Oliva <oliva@dcc.unicamp.br> + + * typeck2.c (my_friendly_abort): Updated URL with bug reporting + instructions to gcc.gnu.org. Removed e-mail address. + +1999-07-15 Mark Mitchell <mark@codesourcery.com> + + * pt.c (check_default_tmpl_args): Handle friends defined in the + class just like member functions defined in the class. + +Thu Jul 15 01:26:49 1999 H.J. Lu <hjl@gnu.org> + + * decl.c (duplicate_decls): Relax restriction for exception + checks on duplicate symbols. + +1999-07-07 Jason Merrill <jason@yorick.cygnus.com> + + * decl.c (grokdeclarator): Update the names of all variants when + de-anonymizing. + +Wed Jul 7 01:26:47 1999 Alexandre Oliva <oliva@dcc.unicamp.br> + + * decl2.c (mark_vtable_entries): Fix check for rtti offset. + 1999-06-26 Richard Henderson <rth@cygnus.com> * decl.c (cp_finish_decl): Fix typo in cp_warning_at call. diff --git a/gnu/egcs/gcc/cp/typeck2.c b/gnu/egcs/gcc/cp/typeck2.c index 3dae61ecc66..55039f9aa33 100644 --- a/gnu/egcs/gcc/cp/typeck2.c +++ b/gnu/egcs/gcc/cp/typeck2.c @@ -343,8 +343,8 @@ my_friendly_abort (i) ack ("Internal compiler error."); else ack ("Internal compiler error %d.", i); - ack ("Please submit a full bug report to `egcs-bugs@egcs.cygnus.com'."); - ack ("See <URL:http://egcs.cygnus.com/faq.html#bugreport> for details."); + ack ("Please submit a full bug report."); + ack ("See <URL:http://gcc.gnu.org/faq.html#bugreport> for instructions."); } else error ("confused by earlier errors, bailing out"); @@ -358,8 +358,8 @@ my_friendly_abort (i) else error ("Internal compiler error %d.", i); - error ("Please submit a full bug report to `egcs-bugs@egcs.cygnus.com'."); - fatal ("See <URL:http://egcs.cygnus.com/faq.html#bugreport> for details."); + error ("Please submit a full bug report."); + fatal ("See <URL:http://egcs.cygnus.com/faq.html#bugreport> for instructions."); } void |