remove an unneeded vec.release () to unbreak lto bootstrap

From-SVN: r205750
This commit is contained in:
Trevor Saunders 2013-12-06 16:56:59 +00:00 committed by Trevor Saunders
parent 60ea4be6cf
commit 7b823b4f6b
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-12-06 Trevor Saunders <tsaunders@mozilla.com>
* tree-ssa-pre.c (compute_antic_aux): Remove redundant call to vec::release.
2013-12-06 Ian Bolton <ian.bolton@arm.com>
Mark Mitchell <mark@codesourcery.com>

View file

@ -2208,7 +2208,6 @@ compute_antic_aux (basic_block block, bool block_has_abnormal_pred_edge)
BB_VISITED (block) = 0;
BB_DEFERRED (block) = 1;
changed = true;
worklist.release ();
goto maybe_dump_sets;
}