From 038d9bc039abc2a684631dc13b1d4034fce743d7 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 13 Oct 1993 19:59:57 +0000 Subject: [PATCH] (FRAME_POINTER_REQUIRED): Require a frame pointer if fn calls setjmp. From-SVN: r5777 --- gcc/config/ns32k/pc532.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gcc/config/ns32k/pc532.h b/gcc/config/ns32k/pc532.h index b6cc01ab1c8..baa9474c20e 100644 --- a/gcc/config/ns32k/pc532.h +++ b/gcc/config/ns32k/pc532.h @@ -35,6 +35,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef PCC_STATIC_STRUCT_RETURN +/* There's a bug in the setjmp implementation that strikes + if the caller of setjmp doesn't have a frame pointer. */ +#undef FRAME_POINTER_REQUIRED +#define FRAME_POINTER_REQUIRED current_function_calls_setjmp + /* 32-bit alignment for efficiency */ #undef POINTER_BOUNDARY #define POINTER_BOUNDARY 32 -- 2.30.2