From: Andrea Corallo Date: Mon, 10 Jun 2019 08:38:14 +0000 (+0200) Subject: code cleanup X-Git-Tag: emacs-28.0.90~2727^2~1498 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=65eb55ff4194c67ede020ceabd7b92e7d2128908;p=emacs.git code cleanup --- diff --git a/src/comp.c b/src/comp.c index 3cb51892959..d92e4822266 100644 --- a/src/comp.c +++ b/src/comp.c @@ -652,10 +652,6 @@ compute_bblocks (ptrdiff_t bytestr_length, unsigned char *bytestr_data) bb_n = j + 1; } - /* for (int i = 0; i < bb_n; i++) */ - /* printf ("%d ", bb_start_pc[i]); */ - /* printf ("\n"); */ - basic_block_t curr_bb; for (int i = 0, pc = 0; pc < bytestr_length; pc++) { @@ -1492,7 +1488,6 @@ compile_f (const char *f_name, ptrdiff_t bytestr_length, gcc_jit_rvalue *c = comp_lisp_obj_as_ptr_from_ptr (comp.bblock, vectorp[op]); PUSH_RVAL (c); - /* Fprint(vectorp[op], Qnil); */ break; } @@ -1511,8 +1506,6 @@ compile_f (const char *f_name, ptrdiff_t bytestr_length, error ("Something went wrong"); exit: - /* if (nil_ret_bb) */ - /* xfree (nil_ret_bb); */ xfree (stack_base); xfree (bb_map); return comp_res;