aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index bb7922d54a4..1b02c60c618 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -32,6 +32,11 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
32#include "xterm.h" 32#include "xterm.h"
33#endif 33#endif
34 34
35/* Work around GCC bug 54561. */
36#if GNUC_PREREQ (4, 3, 0)
37# pragma GCC diagnostic ignored "-Wclobbered"
38#endif
39
35/* 40/*
36 * define BYTE_CODE_SAFE to enable some minor sanity checking (useful for 41 * define BYTE_CODE_SAFE to enable some minor sanity checking (useful for
37 * debugging the byte compiler...) 42 * debugging the byte compiler...)