[libc-commits] [libc] [libc] remove unnecessary dependency on assert from __stack_check_fail (PR #75985)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Tue Dec 19 15:48:58 PST 2023


https://github.com/nickdesaulniers created https://github.com/llvm/llvm-project/pull/75985

None

>From f1a2b4544d9d7a9bd334f4617d10d52467a9615c Mon Sep 17 00:00:00 2001
From: Nick Desaulniers <ndesaulniers at google.com>
Date: Tue, 19 Dec 2023 15:47:40 -0800
Subject: [PATCH] [libc] remove unnecessary dependency on assert from
 __stack_check_fail

---
 libc/src/compiler/generic/CMakeLists.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libc/src/compiler/generic/CMakeLists.txt b/libc/src/compiler/generic/CMakeLists.txt
index 0d869b72a12cf5..2fc8f7f64c8570 100644
--- a/libc/src/compiler/generic/CMakeLists.txt
+++ b/libc/src/compiler/generic/CMakeLists.txt
@@ -5,7 +5,6 @@ add_entrypoint_object(
   HDRS
     ../__stack_chk_fail.h
   DEPENDS
-    libc.include.assert
     libc.src.__support.OSUtil.osutil
     libc.src.stdlib.abort
 )



More information about the libc-commits mailing list