diff options
author | Roger Sayle <roger@eyesopen.com> | 2004-02-15 14:30:38 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2004-02-15 14:30:38 +0000 |
commit | 7501c4e45bd8e7ca6fc36d83dbc4b3ea1772fddc (patch) | |
tree | efe52867ce198bcd7d4dc2ad5dd66b0c94f8a933 /gcc/c-common.h | |
parent | fb264fec4885521a881dca835f2794636870a10c (diff) | |
download | gcc-7501c4e45bd8e7ca6fc36d83dbc4b3ea1772fddc.zip gcc-7501c4e45bd8e7ca6fc36d83dbc4b3ea1772fddc.tar.gz gcc-7501c4e45bd8e7ca6fc36d83dbc4b3ea1772fddc.tar.bz2 |
c-common.h (GET_DIRECTIVE_LINE): Remove unused macro.
* c-common.h (GET_DIRECTIVE_LINE): Remove unused macro.
(get_directive_line): Remove unused function prototype.
* f/lex.c (ffelex_get_directive_line): Provide a more descriptive
comment. Remove reference to non-existant get_directive_line.
From-SVN: r77850
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 5529252..f409e7a 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -931,9 +931,6 @@ extern tree convert_and_check (tree, tree); extern void overflow_warning (tree); extern void unsigned_conversion_warning (tree, tree); -/* Read the rest of the current #-directive line. */ -extern char *get_directive_line (void); -#define GET_DIRECTIVE_LINE() get_directive_line () #define c_sizeof(T) c_sizeof_or_alignof_type (T, SIZEOF_EXPR, 1) #define c_alignof(T) c_sizeof_or_alignof_type (T, ALIGNOF_EXPR, 1) |