disable heap_breakdown when asan is enabled

This commit is contained in:
Meghan Denny
2025-09-19 02:38:38 -07:00
committed by GitHub
parent 45760cd53c
commit 3908cd9d16

View File

@@ -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"))