Fix typo in tree-ssa-reassoc.c.
gcc/ChangeLog: * tree-ssa-reassoc.c (ovce_extract_ops): Replace *vcond with vcond as we check for NULL pointer.
This commit is contained in:
parent
9b4bdaf794
commit
9435fb9668
@ -3840,7 +3840,7 @@ ovce_extract_ops (tree var, gassign **rets, bool *reti, tree *type,
|
||||
gassign *stmt = dyn_cast <gassign *> (SSA_NAME_DEF_STMT (var));
|
||||
if (stmt == NULL)
|
||||
return ERROR_MARK;
|
||||
if (*vcond)
|
||||
if (vcond)
|
||||
*vcond = stmt;
|
||||
|
||||
/* ??? If we start creating more COND_EXPR, we could perform
|
||||
|
Loading…
Reference in New Issue
Block a user