summaryrefslogtreecommitdiff
path: root/gcc/c-tree.h
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-04-25 02:51:34 -0700
committerYamaArashi <shadow962@live.com>2016-04-25 02:51:34 -0700
commit346ed7678fc0a02c1c93c066140f819789f039d9 (patch)
treefdd46f22c809c5c44fdd7fb10070fd5320078b85 /gcc/c-tree.h
parentfa618cd10b1985bae42882f82346b646783892c6 (diff)
remove driver and cpp
Diffstat (limited to 'gcc/c-tree.h')
-rwxr-xr-xgcc/c-tree.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h
index 6f45127..6ce8e4d 100755
--- a/gcc/c-tree.h
+++ b/gcc/c-tree.h
@@ -187,8 +187,8 @@ 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 ()
+extern char *get_directive_line (FILE *);
+#define GET_DIRECTIVE_LINE() get_directive_line(finput)
/* Subroutine of build_binary_op, used for comparison operations.
See if the operands have both been converted from subword integer types
@@ -273,7 +273,7 @@ extern tree c_build_qualified_type (tree, int);
c_build_qualified_type (TYPE, \
((CONST_P) ? TYPE_QUAL_CONST : 0) | \
((VOLATILE_P) ? TYPE_QUAL_VOLATILE : 0))
-extern int c_decode_option (int, char **);
+extern void c_decode_option (char *);
extern void c_mark_varargs (void);
extern tree check_identifier (tree, tree);
extern void clear_parm_order (void);
@@ -410,10 +410,6 @@ extern int current_function_returns_null;
extern int skip_evaluation;
-/* Nonzero means `$' can be in an identifier. */
-
-extern int dollars_in_ident;
-
/* Nonzero means allow type mismatches in conditional expressions;
just make their values `void'. */
@@ -530,10 +526,6 @@ extern int warn_multichar;
extern int warn_long_long;
-/* Nonzero means we are reading code that came from a system header file. */
-
-extern int system_header_p;
-
/* In c-decl.c */
extern void finish_incomplete_decl (tree);