diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2001-05-21 12:06:37 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2001-05-21 12:06:37 -0400 |
commit | 68981e3a32e84690bbc460fdabf1defaec9f748f (patch) | |
tree | ea86d6b124e14b25d7d8370f0a19ce515c6ce39c /gcc/c-common.c | |
parent | 90ecce3e49d93a4e39e8ec93038eb335515e35ad (diff) | |
download | gcc-68981e3a32e84690bbc460fdabf1defaec9f748f.zip gcc-68981e3a32e84690bbc460fdabf1defaec9f748f.tar.gz gcc-68981e3a32e84690bbc460fdabf1defaec9f748f.tar.bz2 |
fix comment
From-SVN: r42396
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 f037ecc..2906c96 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -2845,7 +2845,7 @@ lang_get_alias_set (t) int *ip; int **ipp = &ip; - const int* const* cipp = &ip; + 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 |