From: Jason Merrill Date: Mon, 25 Aug 1997 21:30:44 +0000 (-0400) Subject: call.c (joust): Tweak message. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=922ddba49fb5a98be127a55a75c37dfcf5d26fc6;p=gcc.git call.c (joust): Tweak message. * call.c (joust): Tweak message. Sat Aug 23 18:02:59 1997 Mark Mitchell * error.c (type_as_string): Put const/volatile on template type parameters where appropriate. From-SVN: r14919 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 01ac302dd60..7cd6bedb4e8 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,12 @@ +Mon Aug 25 14:30:02 1997 Jason Merrill + + * call.c (joust): Tweak message. + +Sat Aug 23 18:02:59 1997 Mark Mitchell + + * error.c (type_as_string): Put const/volatile on template type + parameters where appropriate. + Sat Aug 23 17:47:22 1997 Jeffrey A Law (law@cygnus.com) * call.c (strictly_better): Make arguments unsigned ints. diff --git a/gcc/cp/call.c b/gcc/cp/call.c index c26006aaa78..0a838857675 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -5854,7 +5854,7 @@ joust (cand1, cand2) else type1 = TREE_TYPE (t2), type2 = TREE_TYPE (t1); - cp_warning ("`%T' promotes to `%T', not `%T'", + cp_warning ("passing `%T' chooses `%T' over `%T'", type, type1, type2); cp_warning (" in call to `%D'", DECL_NAME (cand1->fn)); } diff --git a/gcc/cp/error.c b/gcc/cp/error.c index cc7908c5556..b3d68ce0668 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -230,6 +230,7 @@ dump_type (t, v) break; case TEMPLATE_TYPE_PARM: + dump_readonly_or_volatile (t, after); if (TYPE_IDENTIFIER (t)) OB_PUTID (TYPE_IDENTIFIER (t)); else