[compiler-rt] [cfi] Remove a redundant CMake argument (PR #118773)

via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 5 01:18:25 PST 2024


https://github.com/minxuanz created https://github.com/llvm/llvm-project/pull/118773

None

>From 04e30e81398c0c46bd84546cb2cab380ff2fda45 Mon Sep 17 00:00:00 2001
From: Min <45393763+minxuanz at users.noreply.github.com>
Date: Thu, 5 Dec 2024 17:15:55 +0800
Subject: [PATCH] [cfi] Remove a redundant CMake argument

---
 compiler-rt/test/cfi/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler-rt/test/cfi/CMakeLists.txt b/compiler-rt/test/cfi/CMakeLists.txt
index 98c328fdcf1152..05ebc1ba41f609 100644
--- a/compiler-rt/test/cfi/CMakeLists.txt
+++ b/compiler-rt/test/cfi/CMakeLists.txt
@@ -40,7 +40,7 @@ foreach(arch ${CFI_TEST_ARCH})
   get_test_cc_for_arch(${arch} CFI_TEST_TARGET_CC CFI_TEST_TARGET_CFLAGS)
   if (APPLE)
     # FIXME: enable ThinLTO tests after fixing http://llvm.org/pr32741
-    add_cfi_test_suites(False False False)
+    add_cfi_test_suites(False False)
   elseif(WIN32)
     add_cfi_test_suites(True False)
     add_cfi_test_suites(True True)



More information about the llvm-commits mailing list