diff options
Diffstat (limited to 'gcc/gimple-iterator.c')
-rw-r--r-- | gcc/gimple-iterator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gimple-iterator.c b/gcc/gimple-iterator.c index 914685c..3d01566 100644 --- a/gcc/gimple-iterator.c +++ b/gcc/gimple-iterator.c @@ -33,7 +33,7 @@ along with GCC; see the file COPYING3. If not see static inline void update_modified_stmt (gimple stmt) { - if (!ssa_operands_active ()) + if (!ssa_operands_active (cfun)) return; update_stmt_if_modified (stmt); } @@ -46,7 +46,7 @@ update_modified_stmts (gimple_seq seq) { gimple_stmt_iterator gsi; - if (!ssa_operands_active ()) + if (!ssa_operands_active (cfun)) return; for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi)) update_stmt_if_modified (gsi_stmt (gsi)); |