diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2004-01-20 12:01:28 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2004-01-20 12:01:28 -0500 |
commit | 162f92bb8931bf277a8f31f37d3fc576cd6e424a (patch) | |
tree | 7f75c6fd172fddbc5da1606f13e0b1e99e616697 /gcc/c-common.c | |
parent | c8b6fae38838f18fb015c4b46b4b2f9b462acbf3 (diff) | |
download | gcc-162f92bb8931bf277a8f31f37d3fc576cd6e424a.zip gcc-162f92bb8931bf277a8f31f37d3fc576cd6e424a.tar.gz gcc-162f92bb8931bf277a8f31f37d3fc576cd6e424a.tar.bz2 |
fix comment
From-SVN: r76215
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 87ff053..ffb69e7 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 |