From patchwork Wed Nov 7 20:23:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [trans-mem] Don't update_ssa twice Date: Wed, 07 Nov 2012 10:23:08 -0000 From: Richard Henderson X-Patchwork-Id: 197728 Message-Id: <509AC32C.3000706@redhat.com> To: GCC Patches , Aldy Hernandez When I patched Aldy's code to perform the update_ssa explicitly, I forgot to take out the TODO_update_ssa that Aldy had added. Tested on x86_64-linux and committed. r~ * trans-mem.c (pass_ipa_tm): Don't use TODO_update_ssa. diff --git a/gcc/trans-mem.c b/gcc/trans-mem.c index 642e088..a7b4a9c 100644 --- a/gcc/trans-mem.c +++ b/gcc/trans-mem.c @@ -5355,7 +5355,7 @@ struct simple_ipa_opt_pass pass_ipa_tm = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_update_ssa, /* todo_flags_finish */ + 0, /* todo_flags_finish */ }, };