[compiler-rt] r277511 - fix comments typos [NFC]

Etienne Bergeron via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 2 13:07:49 PDT 2016


Author: etienneb
Date: Tue Aug  2 15:07:49 2016
New Revision: 277511

URL: http://llvm.org/viewvc/llvm-project?rev=277511&view=rev
Log:
fix comments typos [NFC]

Modified:
    compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc

Modified: compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc?rev=277511&r1=277510&r2=277511&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_win_dynamic_runtime_thunk.cc Tue Aug  2 15:07:49 2016
@@ -43,8 +43,8 @@
 // attribute adds __imp_ prefix to the symbol name of a variable.
 // Since in general we don't know if a given TU is going to be used
 // with a MT or MD runtime and we don't want to use ugly __imp_ names on Windows
-// just to work around this issue, let's clone the a variable that is
-// constant after initialization anyways.
+// just to work around this issue, let's clone the variable that is constant
+// after initialization anyways.
 extern "C" {
 __declspec(dllimport) int __asan_should_detect_stack_use_after_return();
 int __asan_option_detect_stack_use_after_return =
@@ -60,8 +60,8 @@ int __asan_option_detect_stack_use_after
 // attribute adds __imp_ prefix to the symbol name of a variable.
 // Since in general we don't know if a given TU is going to be used
 // with a MT or MD runtime and we don't want to use ugly __imp_ names on Windows
-// just to work around this issue, let's clone the a variable that is
-// constant after initialization anyways.
+// just to work around this issue, let's clone the variable that is constant
+// after initialization anyways.
 extern "C" {
 __declspec(dllimport) int __asan_should_detect_stack_use_after_scope();
 int __asan_option_detect_stack_use_after_scope =




More information about the llvm-commits mailing list