[compiler-rt] Fix various typos in asan dll [NFC]
authorEtienne Bergeron <etienneb@google.com>
Mon, 1 Aug 2016 15:08:12 +0000 (15:08 +0000)
committerEtienne Bergeron <etienneb@google.com>
Mon, 1 Aug 2016 15:08:12 +0000 (15:08 +0000)
llvm-svn: 277345

compiler-rt/lib/asan/asan_win.cc
compiler-rt/lib/asan/asan_win_dll_thunk.cc
compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc

index a4eb600..19ed14b 100644 (file)
@@ -43,7 +43,7 @@ int __asan_should_detect_stack_use_after_scope() {
   return __asan_option_detect_stack_use_after_scope;
 }
 
-// -------------------- A workaround for the abscence of weak symbols ----- {{{
+// -------------------- A workaround for the absence of weak symbols ----- {{{
 // We don't have a direct equivalent of weak symbols when using MSVC, but we can
 // use the /alternatename directive to tell the linker to default a specific
 // symbol to a specific value, which works nicely for allocator hooks and
@@ -70,7 +70,7 @@ void __asan_default_on_error() {}
 // }}}
 }  // extern "C"
 
-// ---------------------- Windows-specific inteceptors ---------------- {{{
+// ---------------------- Windows-specific interceptors ---------------- {{{
 INTERCEPTOR_WINAPI(void, RaiseException, void *a, void *b, void *c, void *d) {
   CHECK(REAL(RaiseException));
   __asan_handle_no_return();
@@ -153,7 +153,7 @@ void EnsureWorkerThreadRegistered() {
 INTERCEPTOR_WINAPI(DWORD, NtWaitForWorkViaWorkerFactory, DWORD a, DWORD b) {
   // NtWaitForWorkViaWorkerFactory is called from system worker pool threads to
   // query work scheduled by BindIoCompletionCallback, QueueUserWorkItem, etc.
-  // System worker pool threads are created at arbitraty point in time and
+  // System worker pool threads are created at arbitrary point in time and
   // without using CreateThread, so we wrap NtWaitForWorkViaWorkerFactory
   // instead and don't register a specific parent_tid/stack.
   EnsureWorkerThreadRegistered();
index 912144b..c8f4867 100644 (file)
@@ -15,7 +15,7 @@
 // See https://github.com/google/sanitizers/issues/209 for the details.
 //===----------------------------------------------------------------------===//
 
-// Only compile this code when buidling asan_dll_thunk.lib
+// Only compile this code when building asan_dll_thunk.lib
 // Using #ifdef rather than relying on Makefiles etc.
 // simplifies the build procedure.
 #ifdef ASAN_DLL_THUNK
index 6dd65b1..c66d804 100644 (file)
@@ -1,4 +1,4 @@
-//===-- asan_win_uar_thunk.cc ---------------------------------------------===//
+//===-- asan_win_dynamic_runtime_thunk.cc ---------------------------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //
 //  - forwarding the detect_stack_use_after_return runtime option
 //  - forwarding the detect_stack_use_after_scope runtime option
 //  - working around deficiencies of the MD runtime
-//  - installing a custom SEH handlerx
+//  - installing a custom SEH handler
 //
 //===----------------------------------------------------------------------===//
 
-// Only compile this code when buidling asan_dynamic_runtime_thunk.lib
+// Only compile this code when building asan_dynamic_runtime_thunk.lib
 // Using #ifdef rather than relying on Makefiles etc.
 // simplifies the build procedure.
 #ifdef ASAN_DYNAMIC_RUNTIME_THUNK