[compiler-rt] a75322c - Fix typo in #98409

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 10 17:58:35 PDT 2024


Author: Vitaly Buka
Date: 2024-07-10T17:58:25-07:00
New Revision: a75322c3c4905a20758c41e4f4d7304d6ca15f3d

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

LOG: Fix typo in #98409

Added: 
    

Modified: 
    compiler-rt/lib/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/CMakeLists.txt b/compiler-rt/lib/CMakeLists.txt
index 5b2395ea8eba3..22f9b3ea8a0c3 100644
--- a/compiler-rt/lib/CMakeLists.txt
+++ b/compiler-rt/lib/CMakeLists.txt
@@ -41,7 +41,7 @@ if(COMPILER_RT_BUILD_SANITIZERS)
     # Contains RTLSanCommon used even without COMPILER_RT_HAS_LSAN.
     add_subdirectory(lsan)
     # Contains RTUbsan used even without COMPILER_RT_HAS_UBSAN.
-    add_subdirectory(lsan)
+    add_subdirectory(ubsan)
   endif()
 
   foreach(sanitizer ${COMPILER_RT_SANITIZERS_TO_BUILD})


        


More information about the llvm-commits mailing list