diff mbox

[13/21] Fixup to function-tests.c

Message ID 1464816003-35862-14-git-send-email-dmalcolm@redhat.com
State New
Headers show

Commit Message

David Malcolm June 1, 2016, 9:19 p.m. UTC
r235817 removed pass_init_datastructures, so function-tests.c no
longer needs it.

gcc/ChangeLog:
	* function-tests.c (representation_test::convert_to_ssa): Drop
	pass_init_datastructures.
---
 gcc/function-tests.c | 3 ---
 1 file changed, 3 deletions(-)
diff mbox

Patch

diff --git a/gcc/function-tests.c b/gcc/function-tests.c
index db105bf..e5b5c63 100644
--- a/gcc/function-tests.c
+++ b/gcc/function-tests.c
@@ -312,11 +312,8 @@  class representation_test : public function_test
     ASSERT_TRUE (fun != NULL);
     EXPECT_EQ (fndecl, fun->decl);
 
-    gimple_opt_pass *pass_init_datastructures =
-      make_pass_init_datastructures (g);
     gimple_opt_pass *build_ssa_pass = make_pass_build_ssa (g);
     push_cfun (fun);
-    pass_init_datastructures->execute (fun);
     build_ssa_pass->execute (fun);
     pop_cfun ();
   }