From: Jason Merrill Date: Tue, 20 Jan 2004 17:01:28 +0000 (-0500) Subject: fix comment X-Git-Tag: releases/gcc-4.0.0~10899 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=162f92bb8931bf277a8f31f37d3fc576cd6e424a;p=thirdparty%2Fgcc.git fix comment From-SVN: r76215 --- diff --git a/gcc/c-common.c b/gcc/c-common.c index 87ff0536e1ec..ffb69e7b723e 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -2922,7 +2922,7 @@ c_common_get_alias_set (tree t) int *ip; int **ipp = &ip; - const int* const* cipp = &ipp; + const int* const* cipp = ipp; And, it doesn't make sense for that to be legal unless you can dereference IPP and CIPP. So, we ignore cv-qualifiers on