aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorMichael R. Mauger2017-07-05 23:37:13 -0400
committerMichael R. Mauger2017-07-05 23:37:13 -0400
commit7f62a4a7440aee6aacf04036feb3384a6515e48f (patch)
treeeedee2b54ffce3756f9ca3ef5a1e6e48d83472b6 /src/bytecode.c
parent776635c01abd4aa759e7aa9584b513146978568c (diff)
parent7a0170de20fe1225d3eeac099d1e61a0c0410bf3 (diff)
downloademacs-7f62a4a7440aee6aacf04036feb3384a6515e48f.tar.gz
emacs-7f62a4a7440aee6aacf04036feb3384a6515e48f.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index e781a87d16f..a473dfb9c8c 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -452,14 +452,6 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
452 the table clearer. */ 452 the table clearer. */
453#define LABEL(OP) [OP] = &&insn_ ## OP 453#define LABEL(OP) [OP] = &&insn_ ## OP
454 454
455#if GNUC_PREREQ (4, 6, 0)
456# pragma GCC diagnostic push
457# pragma GCC diagnostic ignored "-Woverride-init"
458#elif defined __clang__
459# pragma GCC diagnostic push
460# pragma GCC diagnostic ignored "-Winitializer-overrides"
461#endif
462
463 /* This is the dispatch table for the threaded interpreter. */ 455 /* This is the dispatch table for the threaded interpreter. */
464 static const void *const targets[256] = 456 static const void *const targets[256] =
465 { 457 {
@@ -471,10 +463,6 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
471#undef DEFINE 463#undef DEFINE
472 }; 464 };
473 465
474#if GNUC_PREREQ (4, 6, 0) || defined __clang__
475# pragma GCC diagnostic pop
476#endif
477
478#endif 466#endif
479 467
480 468