diff options
Diffstat (limited to 'gcc/gensupport.h')
-rw-r--r-- | gcc/gensupport.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gcc/gensupport.h b/gcc/gensupport.h index 3e916be..f2fcce5 100644 --- a/gcc/gensupport.h +++ b/gcc/gensupport.h @@ -23,10 +23,9 @@ along with GCC; see the file COPYING3. If not see struct obstack; extern struct obstack *rtl_obstack; -extern const char *in_fname; -extern int init_md_reader_args_cb (int, char **, bool (*)(const char *)); -extern int init_md_reader_args (int, char **); +extern bool init_rtx_reader_args_cb (int, char **, bool (*)(const char *)); +extern bool init_rtx_reader_args (int, char **); extern rtx read_md_rtx (int *, int *); /* Set this to 0 to disable automatic elision of insn patterns which @@ -84,8 +83,4 @@ extern void add_predicate (struct pred_data *); #define FOR_ALL_PREDICATES(p) for (p = first_predicate; p; p = p->next) -/* This callback will be invoked whenever an rtl include directive is - processed. To be used for creation of the dependency file. */ -extern void (*include_callback) (const char *); - #endif /* GCC_GENSUPPORT_H */ |