diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-10-17 00:19:07 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-10-17 00:19:07 +0100 |
commit | da5b307a57082d0056e62abb8eca9f503a610ee8 (patch) | |
tree | a66a658101cce1fb5eb19354874909480a693e15 /gcc/c-common.h | |
parent | 4fe52ce98c63dc384ca8324bdbcb104988e6ee0b (diff) | |
download | gcc-da5b307a57082d0056e62abb8eca9f503a610ee8.zip gcc-da5b307a57082d0056e62abb8eca9f503a610ee8.tar.gz gcc-da5b307a57082d0056e62abb8eca9f503a610ee8.tar.bz2 |
c-common.c (enum rid): Remove RID_PTRBASE, RID_PTREXTENT and RID_PTRVALUE.
* c-common.c (enum rid): Remove RID_PTRBASE, RID_PTREXTENT and
RID_PTRVALUE.
* c-parse.in (PTR_VALUE, PTR_BASE, PTR_EXTENT): Remove %token
declarations.
(reswords): Remove __ptrbase, __ptrbase__, __ptrextent,
__ptrextent__, __ptrvalue and __ptrvalue__.
(rid_to_yy): Remove RID_PTRBASE, RID_PTREXTENT and RID_PTRVALUE
entries.
From-SVN: r89158
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 77a415d..8f27638 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -72,8 +72,8 @@ enum rid /* C extensions */ RID_ASM, RID_TYPEOF, RID_ALIGNOF, RID_ATTRIBUTE, RID_VA_ARG, - RID_EXTENSION, RID_IMAGPART, RID_REALPART, RID_LABEL, RID_PTRBASE, - RID_PTREXTENT, RID_PTRVALUE, RID_CHOOSE_EXPR, RID_TYPES_COMPATIBLE_P, + RID_EXTENSION, RID_IMAGPART, RID_REALPART, RID_LABEL, RID_CHOOSE_EXPR, + RID_TYPES_COMPATIBLE_P, /* Too many ways of getting the name of a function as a string */ RID_FUNCTION_NAME, RID_PRETTY_FUNCTION_NAME, RID_C99_FUNCTION_NAME, |