diff options
author | Marc Glisse <marc.glisse@inria.fr> | 2011-08-31 11:26:48 +0200 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2011-08-31 09:26:48 +0000 |
commit | 680fba0932753037dd955a7266a450f5800bc765 (patch) | |
tree | 2f98821090961ea7148d243887f2e15a07b486a6 | |
parent | e0c321665e3261e01f9c5b94279f954c06be74ad (diff) | |
download | gcc-680fba0932753037dd955a7266a450f5800bc765.zip gcc-680fba0932753037dd955a7266a450f5800bc765.tar.gz gcc-680fba0932753037dd955a7266a450f5800bc765.tar.bz2 |
generic.texi (Types for C++): CP_TYPE_QUALS -> cp_type_quals.
2011-08-31 Marc Glisse <marc.glisse@inria.fr>
* doc/generic.texi (Types for C++): CP_TYPE_QUALS -> cp_type_quals.
From-SVN: r178369
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/generic.texi | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ad45eb4..ef0d194 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-08-31 Marc Glisse <marc.glisse@inria.fr> + + * doc/generic.texi (Types for C++): CP_TYPE_QUALS -> cp_type_quals. + 2011-08-31 Tom de Vries <tom@codesourcery.com> PR middle-end/43513 diff --git a/gcc/doc/generic.texi b/gcc/doc/generic.texi index dba71e2..82b2663 100644 --- a/gcc/doc/generic.texi +++ b/gcc/doc/generic.texi @@ -2504,7 +2504,7 @@ should submit your patches for inclusion in GCC@. @tindex UNKNOWN_TYPE @tindex TYPENAME_TYPE @tindex TYPEOF_TYPE -@findex CP_TYPE_QUALS +@findex cp_type_quals @findex TYPE_UNQUALIFIED @findex TYPE_QUAL_CONST @findex TYPE_QUAL_VOLATILE @@ -2536,8 +2536,8 @@ the type @code{const int ()[7]}, denoting an array of seven @code{int}s. The following functions and macros deal with cv-qualification of types: @ftable @code -@item CP_TYPE_QUALS -This macro returns the set of type qualifiers applied to this type. +@item cp_type_quals +This function returns the set of type qualifiers applied to this type. This value is @code{TYPE_UNQUALIFIED} if no qualifiers have been applied. The @code{TYPE_QUAL_CONST} bit is set if the type is @code{const}-qualified. The @code{TYPE_QUAL_VOLATILE} bit is set if the |