diff options
Diffstat (limited to 'gcc/tree-ssa.c')
-rw-r--r-- | gcc/tree-ssa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa.c b/gcc/tree-ssa.c index 0fee45f..f1025b2 100644 --- a/gcc/tree-ssa.c +++ b/gcc/tree-ssa.c @@ -1042,7 +1042,7 @@ verify_ssa (bool check_modified_stmt) goto err; } - if (verify_ssa_operands (stmt)) + if (verify_ssa_operands (cfun, stmt)) { print_gimple_stmt (stderr, stmt, 0, TDF_VOPS); goto err; @@ -1195,7 +1195,7 @@ delete_tree_ssa (void) /* We no longer maintain the SSA operand cache at this point. */ if (ssa_operands_active (cfun)) - fini_ssa_operands (); + fini_ssa_operands (cfun); htab_delete (cfun->gimple_df->default_defs); cfun->gimple_df->default_defs = NULL; |