summaryrefslogtreecommitdiff
path: root/py/emitx64.c
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-10-05 13:44:41 +0100
committerDamien <damien.p.george@gmail.com>2013-10-05 13:44:41 +0100
commit054848a1b8aa7e52f3c70e86cc4dc56b565ea830 (patch)
tree254e394f59d095f9ee5384d0ffe9b36fabc8ecaa /py/emitx64.c
parentb05d707b2329a9534121e09e26eb9f8fef1917d3 (diff)
Compiler computes labels and max_num_labels.
Diffstat (limited to 'py/emitx64.c')
-rw-r--r--py/emitx64.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/py/emitx64.c b/py/emitx64.c
index c9307dc00..72a085293 100644
--- a/py/emitx64.c
+++ b/py/emitx64.c
@@ -249,10 +249,6 @@ static void emit_call_with_i64_arg(emit_t *emit, void *fun, int64_t arg_val, int
asm_x64_call_ind(emit->as, fun, REG_RAX);
}
-static int emit_x64_label_new(emit_t *emit) {
- return asm_x64_label_new(emit->as);
-}
-
static void emit_x64_label_assign(emit_t *emit, int l) {
asm_x64_label_assign(emit->as, l);
}
@@ -675,7 +671,6 @@ static const emit_method_table_t emit_x64_method_table = {
emit_x64_get_stack_size,
emit_x64_set_stack_size,
- emit_x64_label_new,
emit_x64_label_assign,
emit_x64_import_name,
emit_x64_import_from,