[compiler-rt] 8ffe63f - [nfc][asan] Fix typo in comment
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 26 14:30:35 PST 2024
Author: Vitaly Buka
Date: 2024-11-26T14:30:26-08:00
New Revision: 8ffe63fb556915c041e8e9bc2d1bf4325f12ba26
URL: https://github.com/llvm/llvm-project/commit/8ffe63fb556915c041e8e9bc2d1bf4325f12ba26
DIFF: https://github.com/llvm/llvm-project/commit/8ffe63fb556915c041e8e9bc2d1bf4325f12ba26.diff
LOG: [nfc][asan] Fix typo in comment
Added:
Modified:
compiler-rt/lib/asan/asan_interceptors.cpp
Removed:
################################################################################
diff --git a/compiler-rt/lib/asan/asan_interceptors.cpp b/compiler-rt/lib/asan/asan_interceptors.cpp
index c13bcf2382b0a3..4129ee8076122d 100644
--- a/compiler-rt/lib/asan/asan_interceptors.cpp
+++ b/compiler-rt/lib/asan/asan_interceptors.cpp
@@ -365,7 +365,7 @@ INTERCEPTOR(void, makecontext, struct ucontext_t *ucp, void (*func)(), int argc,
va_list ap;
uptr args[64];
// We don't know a better way to forward ... into REAL function. We can
- // increase args size if neccecary.
+ // increase args size if necessary.
CHECK_LE(argc, ARRAY_SIZE(args));
internal_memset(args, 0, sizeof(args));
va_start(ap, argc);
More information about the llvm-commits
mailing list