From 597b3e678e09921821ebcb8a567d3ccfe41176b3 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Mon, 16 Mar 2026 15:08:31 +0000 Subject: [PATCH] asm: remove references to old mie api --- asm/include/ivy/asm/bin.h | 2 +- asm/mie/select.c | 10 ++-------- asm/mie/target.c | 4 ++-- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/asm/include/ivy/asm/bin.h b/asm/include/ivy/asm/bin.h index 600576d..063db93 100644 --- a/asm/include/ivy/asm/bin.h +++ b/asm/include/ivy/asm/bin.h @@ -119,7 +119,7 @@ struct ivy_bin_constpool { }; struct ivy_bin_block { - fx_i32 fx_index; + fx_i32 b_index; }; struct ivy_bin_import_table_entry { diff --git a/asm/mie/select.c b/asm/mie/select.c index b95af5c..5432697 100644 --- a/asm/mie/select.c +++ b/asm/mie/select.c @@ -1,14 +1,6 @@ -#include "mie/select/opcode.h" - #include #include #include -#include -#include -#include -#include -#include -#include #include #include @@ -61,6 +53,7 @@ static size_t node_name( return 0; } +#if 0 static enum mie_status get_sp_register( const struct mie_target *target, struct mie_select_builder *builder, struct mie_select_value *out) @@ -415,3 +408,4 @@ const struct mie_target_select_ops __ivy_select_ops = { .s_node_name = node_name, .s_lower_msg = lower_msg, }; +#endif diff --git a/asm/mie/target.c b/asm/mie/target.c index c72cb75..2f8aa4e 100644 --- a/asm/mie/target.c +++ b/asm/mie/target.c @@ -1,5 +1,4 @@ -#include - +#if 0 extern const struct mie_target_select_ops __ivy_select_ops; static const struct mie_target ivy_target = { @@ -11,3 +10,4 @@ const struct mie_target *ivy_asm_mie_target(void) { return &ivy_target; } +#endif