diff options
| author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-20 17:01:28 +0000 |
|---|---|---|
| committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-20 17:01:28 +0000 |
| commit | 7a8a972d65c67c2a9cb9179da746c007b9fcb279 (patch) | |
| tree | 7f75c6fd172fddbc5da1606f13e0b1e99e616697 | |
| parent | 68d0c8478e8816aefd92f4851f5b79f59cf9a0d5 (diff) | |
| download | ppe42-gcc-7a8a972d65c67c2a9cb9179da746c007b9fcb279.tar.gz ppe42-gcc-7a8a972d65c67c2a9cb9179da746c007b9fcb279.zip | |
fix comment
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76215 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 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 |

