From 0ea0820d196ff045720b2bfd8dd958ea7895c9d0 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Fri, 6 Dec 2024 11:46:10 -0800 Subject: [PATCH] minor fixes and cleanups --- src/linker/base_ext/base_arrays.h | 18 ------------------ src/linker/lnk_debug_info.c | 2 +- 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/src/linker/base_ext/base_arrays.h b/src/linker/base_ext/base_arrays.h index f6b27dd4..70531fb1 100644 --- a/src/linker/base_ext/base_arrays.h +++ b/src/linker/base_ext/base_arrays.h @@ -3,24 +3,6 @@ #pragma once -typedef struct U32Array -{ - U64 count; - U32 *v; -} U32Array; - -typedef struct U64Array -{ - U64 count; - U64 *v; -} U64Array; - -typedef struct -{ - U64 count; - U128 *v; -} U128Array; - typedef struct U64Node { struct U64Node *next; diff --git a/src/linker/lnk_debug_info.c b/src/linker/lnk_debug_info.c index 262d130e..0e2e5c82 100644 --- a/src/linker/lnk_debug_info.c +++ b/src/linker/lnk_debug_info.c @@ -5388,7 +5388,7 @@ lnk_build_rad_debug_info(TP_Context *tp, input.top_level_info.exe_name = image_name; input.top_level_info.exe_hash = rdi_hash(image_data.str, image_data.size); input.top_level_info.voff_max = image_vsize; - input.top_level_info.producer_string = push_str8f(scratch.arena, "%s [Debug Info: CodeView]", BUILD_VERSION_STRING); + input.top_level_info.producer_string = push_str8f(scratch.arena, "%s [Debug Info: CodeView]", BUILD_VERSION_STRING_LITERAL); } ProfEnd();