diff options
| author | Andrea Corallo | 2019-06-10 10:38:14 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-01-01 11:33:40 +0100 |
| commit | 65eb55ff4194c67ede020ceabd7b92e7d2128908 (patch) | |
| tree | a65e7212eaf8cf1a9ff4f88fdab9d9027e84b876 /src | |
| parent | 097f36bc75a6570e64f80451ae4bbe2172d610e0 (diff) | |
| download | emacs-65eb55ff4194c67ede020ceabd7b92e7d2128908.tar.gz emacs-65eb55ff4194c67ede020ceabd7b92e7d2128908.zip | |
code cleanup
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp.c | 7 |
1 files changed, 0 insertions, 7 deletions
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) | |||
| 652 | bb_n = j + 1; | 652 | bb_n = j + 1; |
| 653 | } | 653 | } |
| 654 | 654 | ||
| 655 | /* for (int i = 0; i < bb_n; i++) */ | ||
| 656 | /* printf ("%d ", bb_start_pc[i]); */ | ||
| 657 | /* printf ("\n"); */ | ||
| 658 | |||
| 659 | basic_block_t curr_bb; | 655 | basic_block_t curr_bb; |
| 660 | for (int i = 0, pc = 0; pc < bytestr_length; pc++) | 656 | for (int i = 0, pc = 0; pc < bytestr_length; pc++) |
| 661 | { | 657 | { |
| @@ -1492,7 +1488,6 @@ compile_f (const char *f_name, ptrdiff_t bytestr_length, | |||
| 1492 | gcc_jit_rvalue *c = | 1488 | gcc_jit_rvalue *c = |
| 1493 | comp_lisp_obj_as_ptr_from_ptr (comp.bblock, vectorp[op]); | 1489 | comp_lisp_obj_as_ptr_from_ptr (comp.bblock, vectorp[op]); |
| 1494 | PUSH_RVAL (c); | 1490 | PUSH_RVAL (c); |
| 1495 | /* Fprint(vectorp[op], Qnil); */ | ||
| 1496 | break; | 1491 | break; |
| 1497 | } | 1492 | } |
| 1498 | 1493 | ||
| @@ -1511,8 +1506,6 @@ compile_f (const char *f_name, ptrdiff_t bytestr_length, | |||
| 1511 | error ("Something went wrong"); | 1506 | error ("Something went wrong"); |
| 1512 | 1507 | ||
| 1513 | exit: | 1508 | exit: |
| 1514 | /* if (nil_ret_bb) */ | ||
| 1515 | /* xfree (nil_ret_bb); */ | ||
| 1516 | xfree (stack_base); | 1509 | xfree (stack_base); |
| 1517 | xfree (bb_map); | 1510 | xfree (bb_map); |
| 1518 | return comp_res; | 1511 | return comp_res; |