From f8229a390d5ab691de3930374f01b3ac2862667e Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Thu, 2 Oct 2025 18:15:27 -0700 Subject: [PATCH] merge conf fix --- src/rdi_from_dwarf/rdi_from_dwarf.c | 11 ----------- src/rdi_from_dwarf/rdi_from_dwarf.h | 1 - 2 files changed, 12 deletions(-) diff --git a/src/rdi_from_dwarf/rdi_from_dwarf.c b/src/rdi_from_dwarf/rdi_from_dwarf.c index 1b9f61e4..19b6dc82 100644 --- a/src/rdi_from_dwarf/rdi_from_dwarf.c +++ b/src/rdi_from_dwarf/rdi_from_dwarf.c @@ -258,17 +258,6 @@ d2r_collect_proc_params(Arena *arena, D2R_TypeTable *type_table, DW_Input *input //////////////////////////////// -internal B32 -rdim_is_bytecode_tls_dependent(RDIM_EvalBytecode bc) -{ - for EachNode(n, RDIM_EvalBytecodeOp, bc.first_op) { - if (n->op == RDI_EvalOp_TLSOff) { - return 1; - } - } - return 0; -} - internal B32 rdim_is_eval_bytecode_static(RDIM_EvalBytecode bc) { diff --git a/src/rdi_from_dwarf/rdi_from_dwarf.h b/src/rdi_from_dwarf/rdi_from_dwarf.h index c394181e..5b297184 100644 --- a/src/rdi_from_dwarf/rdi_from_dwarf.h +++ b/src/rdi_from_dwarf/rdi_from_dwarf.h @@ -111,7 +111,6 @@ internal RDI_EvalTypeGroup d2r_type_group_from_type_kind(RDI_TypeKind x); //////////////////////////////// //~ RDIM Bytecode Helpers -internal B32 rdim_is_bytecode_tls_dependent(RDIM_EvalBytecode bc); internal B32 rdim_is_eval_bytecode_static(RDIM_EvalBytecode bc); internal U64 rdim_virt_off_from_eval_bytecode(RDIM_EvalBytecode bc, U64 image_base);