diff options
Diffstat (limited to 'scripts/gcc-plugins/latent_entropy_plugin.c')
-rw-r--r-- | scripts/gcc-plugins/latent_entropy_plugin.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/scripts/gcc-plugins/latent_entropy_plugin.c b/scripts/gcc-plugins/latent_entropy_plugin.c index 8ff203ad4809..65264960910d 100644 --- a/scripts/gcc-plugins/latent_entropy_plugin.c +++ b/scripts/gcc-plugins/latent_entropy_plugin.c | |||
@@ -592,12 +592,6 @@ __visible int plugin_init(struct plugin_name_args *plugin_info, | |||
592 | const struct plugin_argument * const argv = plugin_info->argv; | 592 | const struct plugin_argument * const argv = plugin_info->argv; |
593 | int i; | 593 | int i; |
594 | 594 | ||
595 | struct register_pass_info latent_entropy_pass_info; | ||
596 | |||
597 | latent_entropy_pass_info.pass = make_latent_entropy_pass(); | ||
598 | latent_entropy_pass_info.reference_pass_name = "optimized"; | ||
599 | latent_entropy_pass_info.ref_pass_instance_number = 1; | ||
600 | latent_entropy_pass_info.pos_op = PASS_POS_INSERT_BEFORE; | ||
601 | static const struct ggc_root_tab gt_ggc_r_gt_latent_entropy[] = { | 595 | static const struct ggc_root_tab gt_ggc_r_gt_latent_entropy[] = { |
602 | { | 596 | { |
603 | .base = &latent_entropy_decl, | 597 | .base = &latent_entropy_decl, |
@@ -609,6 +603,8 @@ __visible int plugin_init(struct plugin_name_args *plugin_info, | |||
609 | LAST_GGC_ROOT_TAB | 603 | LAST_GGC_ROOT_TAB |
610 | }; | 604 | }; |
611 | 605 | ||
606 | PASS_INFO(latent_entropy, "optimized", 1, PASS_POS_INSERT_BEFORE); | ||
607 | |||
612 | if (!plugin_default_version_check(version, &gcc_version)) { | 608 | if (!plugin_default_version_check(version, &gcc_version)) { |
613 | error(G_("incompatible gcc/plugin versions")); | 609 | error(G_("incompatible gcc/plugin versions")); |
614 | return 1; | 610 | return 1; |