[compiler-rt] ebca13c - [Sanitizer][NFC] Fix typo
Luís Marques via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 23 01:24:49 PST 2021
Author: Luís Marques
Date: 2021-02-23T09:24:35Z
New Revision: ebca13c665042d0aa1c1ffe064f100081045e818
URL: https://github.com/llvm/llvm-project/commit/ebca13c665042d0aa1c1ffe064f100081045e818
DIFF: https://github.com/llvm/llvm-project/commit/ebca13c665042d0aa1c1ffe064f100081045e818.diff
LOG: [Sanitizer][NFC] Fix typo
Added:
Modified:
compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
Removed:
################################################################################
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h b/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
index 12d8c8923071..c50d13303ede 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
@@ -24,7 +24,7 @@
// E.g. with kNumBits==3 all size classes after 2^kMidSizeLog
// look like 0b1xx0..0, where x is either 0 or 1.
//
-// Example: kNumBits=3, kMidSizeLog=4, kMidSizeLog=8, kMaxSizeLog=17:
+// Example: kNumBits=3, kMinSizeLog=4, kMidSizeLog=8, kMaxSizeLog=17:
//
// Classes 1 - 16 correspond to sizes 16 to 256 (size = class_id * 16).
// Next 4 classes: 256 + i * 64 (i = 1 to 4).
More information about the llvm-commits
mailing list