From 162f92bb8931bf277a8f31f37d3fc576cd6e424a Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Tue, 20 Jan 2004 12:01:28 -0500 Subject: [PATCH] fix comment From-SVN: r76215 --- gcc/c-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-common.c b/gcc/c-common.c index 87ff0536e1e..ffb69e7b723 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