From 57bfe5cbabc43620e07931a31339d5a64307aef2 Mon Sep 17 00:00:00 2001 From: Daniel Thornburgh Date: Mon, 22 Jul 2024 12:32:11 -0700 Subject: [PATCH] Include fake for _end too. --- libc/test/src/__support/heap_limit_fake.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libc/test/src/__support/heap_limit_fake.cpp b/libc/test/src/__support/heap_limit_fake.cpp index 6be79880c45c57..82405499c1f5d9 100644 --- a/libc/test/src/__support/heap_limit_fake.cpp +++ b/libc/test/src/__support/heap_limit_fake.cpp @@ -12,8 +12,9 @@ namespace LIBC_NAMESPACE_DECL { extern "C" { -// This isn't used in the unit tests, but it must be defined for the non-fake +// These aren't used in the unit tests, but they must be defined for the non-fake // version of the heap to work. +cpp::byte _end; cpp::byte __llvm_libc_heap_limit; }