From 3908cd9d1644fd7ad1266b457c8bd8c13c49f107 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Fri, 19 Sep 2025 02:38:38 -0700 Subject: [PATCH] disable heap_breakdown when asan is enabled --- src/heap_breakdown.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heap_breakdown.zig b/src/heap_breakdown.zig index 69a79f5060..5e6daacee8 100644 --- a/src/heap_breakdown.zig +++ b/src/heap_breakdown.zig @@ -1,6 +1,6 @@ const vm_size_t = usize; -pub const enabled = Environment.allow_assert and Environment.isMac; +pub const enabled = Environment.allow_assert and Environment.isMac and !Environment.enable_asan; fn heapLabel(comptime T: type) [:0]const u8 { const base_name = if (comptime bun.meta.hasDecl(T, "heap_label"))