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 e794dc1bfc3..856325e0de4 100644 --- a/gcc/tree-ssa.c +++ b/gcc/tree-ssa.c @@ -959,7 +959,7 @@ error: TODO: verify the variable annotations. */ DEBUG_FUNCTION void -verify_ssa (bool check_modified_stmt) +verify_ssa (bool check_modified_stmt, bool check_ssa_operands) { size_t i; basic_block bb; @@ -1042,7 +1042,7 @@ verify_ssa (bool check_modified_stmt) goto err; } - if (verify_ssa_operands (cfun, stmt)) + if (check_ssa_operands && verify_ssa_operands (cfun, stmt)) { print_gimple_stmt (stderr, stmt, 0, TDF_VOPS); goto err; |