aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.h
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2001-12-08 22:34:54 +0000
committerAldy Hernandez <aldyh@gcc.gnu.org>2001-12-08 22:34:54 +0000
commitecbcf7b3198489daee27a8dd913314a69e947c11 (patch)
treebb7979ef02dfccc51f11263c3f2803727502419e /gcc/c-common.h
parent1ec9bf8aa0d0b2375e43668f4a6c186856c9dbc9 (diff)
downloadgcc-ecbcf7b3198489daee27a8dd913314a69e947c11.zip
gcc-ecbcf7b3198489daee27a8dd913314a69e947c11.tar.gz
gcc-ecbcf7b3198489daee27a8dd913314a69e947c11.tar.bz2
c-common.h (rid): Add RID_CHOOSE_EXPR and RID_TYPES_COMPATIBLE_P.
* c-common.h (rid): Add RID_CHOOSE_EXPR and RID_TYPES_COMPATIBLE_P. * c-parse.in (reswords): Add __builtin_choose_expr. Add __builtin_types_compatible_p. Add CHOOSE_EXPR token. Add TYPES_COMPATIBLE_P token. Add production for CHOOSE_EXPR. Add production for TYPES_COMPATIBLE_P. * doc/extend.texi (__builtin_choose_expr): Add documentation. (__builtin_types_compatible_p): Likewise. From-SVN: r47798
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r--gcc/c-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h
index 33835f6..59525d5 100644
--- a/gcc/c-common.h
+++ b/gcc/c-common.h
@@ -74,7 +74,7 @@ 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_PTREXTENT, RID_PTRVALUE, 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,