[compiler-rt] b3837f1 - cfi: Re-enable tests with lld on i386. NFCI.

via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 9 16:41:16 PDT 2025


Author: Peter Collingbourne
Date: 2025-06-09T16:41:13-07:00
New Revision: b3837f139235fe943ff9b7ccef44d11d568c4b81

URL: https://github.com/llvm/llvm-project/commit/b3837f139235fe943ff9b7ccef44d11d568c4b81
DIFF: https://github.com/llvm/llvm-project/commit/b3837f139235fe943ff9b7ccef44d11d568c4b81.diff

LOG: 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

Added: 
    

Modified: 
    compiler-rt/test/cfi/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/cfi/CMakeLists.txt b/compiler-rt/test/cfi/CMakeLists.txt
index 98c328fdcf115..a02573dfeb1ea 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()


        


More information about the llvm-commits mailing list