aboutsummaryrefslogtreecommitdiff
path: root/libcpp/directives.c
diff options
context:
space:
mode:
authorNeil Vachharajani <nvachhar@google.com>2009-10-10 00:34:21 +0000
committerNeil Vachharajani <nvachhar@gcc.gnu.org>2009-10-10 00:34:21 +0000
commit2214382ca9c3dc847aedfbd60fa50e906445fd8c (patch)
tree802f327b8d84abd92a0b62a787f75c58dc03bcfe /libcpp/directives.c
parent98f4c2a362337a4b11510eea4cda4930ca72c381 (diff)
downloadgcc-2214382ca9c3dc847aedfbd60fa50e906445fd8c.zip
gcc-2214382ca9c3dc847aedfbd60fa50e906445fd8c.tar.gz
gcc-2214382ca9c3dc847aedfbd60fa50e906445fd8c.tar.bz2
directives.c (DIRECTIVE_TABLE): Remove DEPRECATED from ident and sccs.
2009-10-09 Neil Vachharajani <nvachhar@google.com> * libcpp/directives.c (DIRECTIVE_TABLE): Remove DEPRECATED from ident and sccs. * gcc/doc/cpp.texi (Other Directives): Do not list #ident and #sccs as deprecated. From-SVN: r152612
Diffstat (limited to 'libcpp/directives.c')
-rw-r--r--libcpp/directives.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcpp/directives.c b/libcpp/directives.c
index c5a1895..f9dba53 100644
--- a/libcpp/directives.c
+++ b/libcpp/directives.c
@@ -151,11 +151,11 @@ D(error, T_ERROR, STDC89, 0) /* 475 */ \
D(pragma, T_PRAGMA, STDC89, IN_I) /* 195 */ \
D(warning, T_WARNING, EXTENSION, 0) /* 22 */ \
D(include_next, T_INCLUDE_NEXT, EXTENSION, INCL | EXPAND) /* 19 */ \
-D(ident, T_IDENT, EXTENSION, IN_I | DEPRECATED) /* 11 */ \
+D(ident, T_IDENT, EXTENSION, IN_I) /* 11 */ \
D(import, T_IMPORT, EXTENSION, INCL | EXPAND) /* 0 ObjC */ \
D(assert, T_ASSERT, EXTENSION, DEPRECATED) /* 0 SVR4 */ \
D(unassert, T_UNASSERT, EXTENSION, DEPRECATED) /* 0 SVR4 */ \
-D(sccs, T_SCCS, EXTENSION, IN_I | DEPRECATED) /* 0 SVR4? */
+D(sccs, T_SCCS, EXTENSION, IN_I) /* 0 SVR4? */
/* #sccs is synonymous with #ident. */
#define do_sccs do_ident