diff options
author | Ben Elliston <bje@au.ibm.com> | 2008-01-22 05:57:39 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2008-01-22 16:57:39 +1100 |
commit | 1d4f537493ecfd41dcdaef735eee2bedce6a85f6 (patch) | |
tree | 48267ac9b5609d4a1ab940279102f3afa582f141 /gcc/tree.c | |
parent | 33b45227e0826ce8ddfe659c42f2c35cc0814065 (diff) | |
download | gcc-1d4f537493ecfd41dcdaef735eee2bedce6a85f6.zip gcc-1d4f537493ecfd41dcdaef735eee2bedce6a85f6.tar.gz gcc-1d4f537493ecfd41dcdaef735eee2bedce6a85f6.tar.bz2 |
* tree.c (check_qualified_type): Improve function description.
From-SVN: r131711
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4151,7 +4151,7 @@ set_type_quals (tree type, int type_quals) TYPE_RESTRICT (type) = (type_quals & TYPE_QUAL_RESTRICT) != 0; } -/* Returns true iff cand is equivalent to base with type_quals. */ +/* Returns true iff CAND is equivalent to BASE with TYPE_QUALS. */ bool check_qualified_type (const_tree cand, const_tree base, int type_quals) |