diff options
author | Geoffrey Keating <geoffk@apple.com> | 2003-07-21 21:25:47 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2003-07-21 21:25:47 +0000 |
commit | 48873ed202e108b84d10358932a8cbf02c41f15e (patch) | |
tree | b8c3a0974d2bb92c973491e3808baf5224a7730d /gcc/c-common.h | |
parent | dd039fc9e6cc2bf9214cb0ff87a07d0346829a59 (diff) | |
download | gcc-48873ed202e108b84d10358932a8cbf02c41f15e.zip gcc-48873ed202e108b84d10358932a8cbf02c41f15e.tar.gz gcc-48873ed202e108b84d10358932a8cbf02c41f15e.tar.bz2 |
c-common.h (num_in_fnames): Declare.
* c-common.h (num_in_fnames): Declare.
(c_static_assembler_name): Move from here...
* c-tree.h (c_static_assembler_name): ... to here.
* c-opts.c: Don't include langhooks-def.h.
(c_static_assembler_name): Move to c-decl.c.
(num_in_fnames): Make externally visible.
* c-decl.c: Include langhooks-def.h.
(c_static_assembler_name): Move from c-opts.c.
* Makefile.in (c-decl.o): Add $(LANGHOOKS_DEF_H).
(c-opts.o): Remove $(LANGHOOKS_DEF_H).
From-SVN: r69650
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 6f579ac..680774a 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -856,6 +856,11 @@ extern int max_tinst_depth; extern int skip_evaluation; +/* The count of input filenames. Only really valid for comparisons + against 1. */ + +extern unsigned num_in_fnames; + /* C types are partitioned into three subsets: object, function, and incomplete types. */ #define C_TYPE_OBJECT_P(type) \ @@ -905,7 +910,6 @@ extern void check_function_format (int *, tree, tree); extern void set_Wformat (int); extern tree handle_format_attribute (tree *, tree, tree, int, bool *); extern tree handle_format_arg_attribute (tree *, tree, tree, int, bool *); -extern void c_static_assembler_name (tree); extern void c_common_insert_default_attributes (tree); extern int c_common_handle_option (size_t code, const char *arg, int value); extern void c_common_handle_filename (const char *filename); |