Commit b44a178a by David Edelsohn Committed by David Edelsohn

* decl2.c (var_finalized_p): Swap arms of conditional.

From-SVN: r71319
parent dfb03c45
2003-09-11 David Edelsohn <edelsohn@gnu.org>
* decl2.c (var_finalized_p): Swap arms of conditional.
2003-09-10 Nathan Sidwell <nathan@codesourcery.com>
PR c++/11788
......
......@@ -1627,9 +1627,9 @@ static bool
var_finalized_p (tree var)
{
if (flag_unit_at_a_time)
return TREE_ASM_WRITTEN (var);
else
return cgraph_varpool_node (var)->finalized;
else
return TREE_ASM_WRITTEN (var);
}
/* If necessary, write out the vtables for the dynamic class CTYPE.
......
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