From: Brendan Kehoe Date: Sat, 1 Jul 1995 15:12:57 +0000 (+0000) Subject: call.c (convert_harshness): Add QUAL_CODE when we're faced with const vs non-const... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=42783eabe802fc6312038934e3c3c5e13e66f266;p=gcc.git call.c (convert_harshness): Add QUAL_CODE when we're faced with const vs non-const for void conversions. * call.c (convert_harshness): Add QUAL_CODE when we're faced with const vs non-const for void conversions. From-SVN: r10100 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 38e70fb0329..b650f974aec 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +Fri Jun 30 13:45:51 1995 Brendan Kehoe + + * call.c (convert_harshness): Add QUAL_CODE when we're faced with + const vs non-const for void conversions. + Thu Jun 29 09:35:05 1995 Mike Stump * decl.c (BOOL_TYPE_SIZE): Fix broken SLOW_BYTE_ACCESS check. diff --git a/gcc/cp/call.c b/gcc/cp/call.c index 6b0f63b0ebf..765e8feb486 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -523,7 +523,17 @@ convert_harshness (type, parmtype, parm) h.distance = CLASSTYPE_MAX_DEPTH (ttr)+1; return h; } + h.code = penalty ? STD_CODE : PROMO_CODE; + /* Catch things like `const char *' -> `const void *' + vs `const char *' -> `void *'. */ + if (ttl != ttr) + { + tree tmp1 = TREE_TYPE (type), tmp2 = TREE_TYPE (parmtype); + if ((TYPE_READONLY (tmp1) != TREE_READONLY (tmp2)) + || (TYPE_VOLATILE (tmp1) != TYPE_VOLATILE (tmp2))) + h.code |= QUAL_CODE; + } return h; }