diff options
author | Joseph Myers <jsm28@cam.ac.uk> | 2000-11-14 10:38:01 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2000-11-14 10:38:01 +0000 |
commit | fe8ca71f2a590de1829e7c07c2fe98b506d940a1 (patch) | |
tree | 763478feecbf3e0fc31329d35540644da22f7a15 | |
parent | 94b01be34735b1618001ef5aae4bc7585baf3182 (diff) | |
download | gcc-fe8ca71f2a590de1829e7c07c2fe98b506d940a1.zip gcc-fe8ca71f2a590de1829e7c07c2fe98b506d940a1.tar.gz gcc-fe8ca71f2a590de1829e7c07c2fe98b506d940a1.tar.bz2 |
* c-common.h (CTI_C_SIZE_TYPE): Update comment.
From-SVN: r37452
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c-common.h | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 75a8fe4..f12e4a3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-11-14 Joseph S. Myers <jsm28@cam.ac.uk> + + * c-common.h (CTI_C_SIZE_TYPE): Update comment. + 2000-11-14 Jakub Jelinek <jakub@redhat.com> * varasm.c (struct varasm_status): Change x_const_rtx_sym_hash_table diff --git a/gcc/c-common.h b/gcc/c-common.h index 06c9c61..1cce9b5 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -116,7 +116,10 @@ enum c_tree_index CTI_SIGNED_WCHAR_TYPE, CTI_UNSIGNED_WCHAR_TYPE, CTI_WINT_TYPE, - CTI_C_SIZE_TYPE, /* For format checking only. */ + CTI_C_SIZE_TYPE, /* The type used for the size_t typedef and the + result type of sizeof (an ordinary type without + TYPE_IS_SIZETYPE set, unlike the internal + sizetype). */ CTI_SIGNED_SIZE_TYPE, /* For format checking only. */ CTI_UNSIGNED_PTRDIFF_TYPE, /* For format checking only. */ CTI_INTMAX_TYPE, |