aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorJoakim Verona2013-03-26 16:14:01 +0100
committerJoakim Verona2013-03-26 16:14:01 +0100
commit48c226c2c2592e31a47559bd1689fcc4354d9479 (patch)
tree2f79cf5a16930fbd09d965be98b6d145c9984eb6 /src/bytecode.c
parente11705b616777a8a72363b2037d989987630e863 (diff)
parent9536ec028c24fbedf617b67e98a108504e5b1e73 (diff)
downloademacs-48c226c2c2592e31a47559bd1689fcc4354d9479.tar.gz
emacs-48c226c2c2592e31a47559bd1689fcc4354d9479.zip
auto upstream
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index acb96c1e61b..7676c8550a4 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -660,7 +660,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
660 the table clearer. */ 660 the table clearer. */
661#define LABEL(OP) [OP] = &&insn_ ## OP 661#define LABEL(OP) [OP] = &&insn_ ## OP
662 662
663#if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__ 663#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
664# pragma GCC diagnostic push 664# pragma GCC diagnostic push
665# pragma GCC diagnostic ignored "-Woverride-init" 665# pragma GCC diagnostic ignored "-Woverride-init"
666#endif 666#endif
@@ -676,7 +676,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
676#undef DEFINE 676#undef DEFINE
677 }; 677 };
678 678
679#if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__ 679#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
680# pragma GCC diagnostic pop 680# pragma GCC diagnostic pop
681#endif 681#endif
682 682