diff options
Diffstat (limited to 'gcc/gimple-low.c')
-rw-r--r-- | gcc/gimple-low.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-low.c b/gcc/gimple-low.c index 71ab1b1e44c..d35ba8b8055 100644 --- a/gcc/gimple-low.c +++ b/gcc/gimple-low.c @@ -829,7 +829,7 @@ lower_builtin_setjmp (gimple_stmt_iterator *gsi) /* Build 'goto CONT_LABEL' and insert. */ g = gimple_build_goto (cont_label); - gsi_insert_before (gsi, g, TSI_SAME_STMT); + gsi_insert_before (gsi, g, GSI_SAME_STMT); /* Build 'NEXT_LABEL:' and insert. */ g = gimple_build_label (next_label); |