From b3837f139235fe943ff9b7ccef44d11d568c4b81 Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Mon, 9 Jun 2025 16:41:13 -0700 Subject: [PATCH] cfi: Re-enable tests with lld on i386. NFCI. Originally disabled because of #34200 but that bug has long since been fixed. Reviewers: fmayer Reviewed By: fmayer Pull Request: https://github.com/llvm/llvm-project/pull/143459 --- 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 98c328fdcf11..a02573dfeb1e 100644 --- a/compiler-rt/test/cfi/CMakeLists.txt +++ b/compiler-rt/test/cfi/CMakeLists.txt @@ -47,7 +47,7 @@ foreach(arch ${CFI_TEST_ARCH}) else() add_cfi_test_suites(False False) add_cfi_test_suites(False True) - if (COMPILER_RT_HAS_LLD AND NOT arch STREQUAL "i386") + if (COMPILER_RT_HAS_LLD) add_cfi_test_suites(True False) add_cfi_test_suites(True True) endif()