diff options
author | Tom de Vries <tom@codesourcery.com> | 2015-11-16 12:40:50 +0000 |
---|---|---|
committer | Tom de Vries <vries@gcc.gnu.org> | 2015-11-16 12:40:50 +0000 |
commit | 7cf76184c4d8a8fa446b9f3126af2d468fed3a08 (patch) | |
tree | 864d7ba05b5d6f18a9ab3f0c357b5abe3dd3d883 /gcc/tree-pass.h | |
parent | c06883ac2d1cc41a051a54141abff4deed429f35 (diff) | |
download | gcc-7cf76184c4d8a8fa446b9f3126af2d468fed3a08.zip gcc-7cf76184c4d8a8fa446b9f3126af2d468fed3a08.tar.gz gcc-7cf76184c4d8a8fa446b9f3126af2d468fed3a08.tar.bz2 |
Remove first_pass_instance
2015-11-16 Tom de Vries <tom@codesourcery.com>
* passes.c (first_pass_instance): Remove variable.
(execute_todo): Remove setting of first_pass_instance.
* tree-pass.h (first_pass_instance): Remove declaration.
From-SVN: r230420
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index d647e73..dcd2d5e 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -629,12 +629,6 @@ extern void ipa_read_optimization_summaries (void); extern void register_one_dump_file (opt_pass *); extern bool function_called_by_processed_nodes_p (void); -/* Set to true if the pass is called the first time during compilation of the - current function. Note that using this information in the optimization - passes is considered not to be clean, and it should be avoided if - possible. */ -extern bool first_pass_instance; - /* Declare for plugins. */ extern void do_per_function_toporder (void (*) (function *, void *), void *); |