[compiler-rt] r345557 - [ubsan-minimal] update comments in CMakeLists.txt
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 29 18:20:12 PDT 2018
Author: vitalybuka
Date: Mon Oct 29 18:20:12 2018
New Revision: 345557
URL: http://llvm.org/viewvc/llvm-project?rev=345557&view=rev
Log:
[ubsan-minimal] update comments in CMakeLists.txt
Summary:
Prepend minimal when UBsan is mentioned and delete a dead comment
Patch by Igor Sugak
Reviewers: eugenis, pcc
Reviewed By: eugenis
Subscribers: mgorny, llvm-commits, #sanitizers
Differential Revision: https://reviews.llvm.org/D53826
Modified:
compiler-rt/trunk/lib/ubsan_minimal/CMakeLists.txt
Modified: compiler-rt/trunk/lib/ubsan_minimal/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/ubsan_minimal/CMakeLists.txt?rev=345557&r1=345556&r2=345557&view=diff
==============================================================================
--- compiler-rt/trunk/lib/ubsan_minimal/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/ubsan_minimal/CMakeLists.txt Mon Oct 29 18:20:12 2018
@@ -1,4 +1,4 @@
-# Build for the undefined behavior sanitizer runtime support library.
+# Build for the minimal undefined behavior sanitizer runtime support library.
set(UBSAN_MINIMAL_SOURCES
ubsan_minimal_handlers.cc
@@ -15,7 +15,7 @@ set(UBSAN_DYNAMIC_LIBS ${SANITIZER_COMMO
add_compiler_rt_component(ubsan-minimal)
-# Common parts of UBSan runtime.
+# Common parts of minimal UBSan runtime.
add_compiler_rt_object_libraries(RTUbsan_minimal
OS ${SANITIZER_COMMON_SUPPORTED_OS}
ARCHS ${UBSAN_COMMON_SUPPORTED_ARCH}
@@ -23,9 +23,7 @@ add_compiler_rt_object_libraries(RTUbsan
if(COMPILER_RT_HAS_UBSAN_MINIMAL)
- # Initializer of standalone UBSan runtime.
-
- # Standalone UBSan runtimes.
+ # Standalone minimal UBSan runtimes.
add_compiler_rt_runtime(clang_rt.ubsan_minimal
STATIC
OS ${SANITIZER_COMMON_SUPPORTED_OS}
More information about the llvm-commits
mailing list