From 82f54dd293d95d7a9a988bf1e6922660c1a5b013 Mon Sep 17 00:00:00 2001 From: Nickolas Lloyd Date: Sun, 25 Dec 2016 00:32:12 -0500 Subject: [PATCH] ; Fix compiler warnings in src/bytecode-jit.c --- src/bytecode-jit.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/bytecode-jit.c b/src/bytecode-jit.c index 98a8fafece4..a5c9f01e9e2 100644 --- a/src/bytecode-jit.c +++ b/src/bytecode-jit.c @@ -47,19 +47,6 @@ along with GNU Emacs. If not, see . */ #define PUSH(x) (top++, *top = (x)) -/* Pop a value off the execution stack. */ - -#define POP (*top--) - -/* Discard n values from the execution stack. */ - -#define DISCARD(n) (top -= (n)) - -/* Get the value which is at the top of the execution stack, but don't - pop it. */ - -#define TOP (*top) - #undef BEFORE_POTENTIAL_GC #undef AFTER_POTENTIAL_GC #define BEFORE_POTENTIAL_GC() ((void )0) @@ -789,7 +776,6 @@ jit_byte_code__ (Lisp_Object byte_code) Lisp_Object bytestr; Lisp_Object vector; Lisp_Object maxdepth; - Lisp_Object *top; enum handlertype type; unsigned char *byte_string_start, *pc; @@ -1177,7 +1163,6 @@ jit_byte_code__ (Lisp_Object byte_code) CASE (Bgoto): { - jit_value_t v; op = FETCH2; CHECK_RANGE (op); JIT_CALL (byte_code_quit, NULL, 0); @@ -1307,7 +1292,6 @@ jit_byte_code__ (Lisp_Object byte_code) type = CONDITION_CASE; pushhandler: { - jit_label_t new_label; jit_value_t tag, stackp, jmp, result, result2, typev; int dest = FETCH2; JIT_NEED_STACK; -- 2.39.5