diff options
author | Richard Stallman <rms@gnu.org> | 1993-10-30 15:42:52 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-10-30 15:42:52 +0000 |
commit | 972ded9cefdcdcbb2260e911d3baea6c0e2daab8 (patch) | |
tree | a4a47d1f37e145d51122cea6f7187e375e017b7b | |
parent | 22ba338b8f7f2b198f14978125571c2d8a7211b6 (diff) | |
download | gcc-972ded9cefdcdcbb2260e911d3baea6c0e2daab8.zip gcc-972ded9cefdcdcbb2260e911d3baea6c0e2daab8.tar.gz gcc-972ded9cefdcdcbb2260e911d3baea6c0e2daab8.tar.bz2 |
(enum built_in_function): Added END_BUILTINS to delimit
standard from language-specific builtins.
From-SVN: r5945
-rw-r--r-- | gcc/tree.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -97,7 +97,10 @@ enum built_in_function BUILT_IN_NEW, BUILT_IN_VEC_NEW, BUILT_IN_DELETE, - BUILT_IN_VEC_DELETE + BUILT_IN_VEC_DELETE, + + /* Upper bound on non-language-specific builtins. */ + END_BUILTINS }; /* The definition of tree nodes fills the next several pages. */ |