Commit c36eadbe by Marc Glisse Committed by Marc Glisse

tree-into-ssa.c (is_old_name): Replace "new" with "old".

2014-10-17  Marc Glisse  <marc.glisse@inria.fr>

	* tree-into-ssa.c (is_old_name): Replace "new" with "old".

From-SVN: r216367
parent 1bc4a978
2014-10-17 Marc Glisse <marc.glisse@inria.fr>
* tree-into-ssa.c (is_old_name): Replace "new" with "old".
2014-10-17 Tom de Vries <tom@codesourcery.com> 2014-10-17 Tom de Vries <tom@codesourcery.com>
PR rtl-optimization/61605 PR rtl-optimization/61605
...@@ -579,9 +579,9 @@ static inline bool ...@@ -579,9 +579,9 @@ static inline bool
is_old_name (tree name) is_old_name (tree name)
{ {
unsigned ver = SSA_NAME_VERSION (name); unsigned ver = SSA_NAME_VERSION (name);
if (!new_ssa_names) if (!old_ssa_names)
return false; return false;
return (ver < SBITMAP_SIZE (new_ssa_names) return (ver < SBITMAP_SIZE (old_ssa_names)
&& bitmap_bit_p (old_ssa_names, ver)); && bitmap_bit_p (old_ssa_names, ver));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment