From 6b023d07003ec5b59ffc7ce36e0a25a59afee663 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Tue, 13 May 1997 21:08:28 +0000 Subject: [PATCH] expr.c (expand_builtin_setjmp): Remove setting of current_function_has_nonlocal_goto, as this isn't a goto. * expr.c (expand_builtin_setjmp): Remove setting of current_function_has_nonlocal_goto, as this isn't a goto. From-SVN: r14066 --- gcc/expr.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/expr.c b/gcc/expr.c index 4e3c981682b..afe6a3c93ab 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -7974,7 +7974,12 @@ expand_builtin_setjmp (buf_addr, target) #endif emit_move_insn (virtual_stack_vars_rtx, hard_frame_pointer_rtx); - current_function_has_nonlocal_goto = 1; + /* Do we need to do something like: + + current_function_has_nonlocal_label = 1; + + here? It seems like we might have to, or some subset of that + functionality, but I am unsure. (mrs) */ #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM if (fixed_regs[ARG_POINTER_REGNUM]) -- 2.30.2