Remove duplicate avoid in comments from a few files (#5363)
authorJames Singleton <jpsingleton@users.noreply.github.com>
Wed, 1 Jun 2016 16:27:43 +0000 (17:27 +0100)
committerJan Kotas <jkotas@microsoft.com>
Wed, 1 Jun 2016 16:27:43 +0000 (09:27 -0700)
Remove double avoid in comments

src/vm/amd64/JitHelpers_Slow.asm
src/vm/array.cpp
src/vm/i386/jitinterfacex86.cpp

index 64b9a82e61a4b56abf2a364b327cb4c9fa5fa77f..66b0e90d5d4b72e0286bd9fb5770d9ea255daf52 100644 (file)
@@ -277,7 +277,7 @@ NESTED_ENTRY AllocateStringFastMP, _TEXT
 
         ; Instead of doing elaborate overflow checks, we just limit the number of elements
         ; to (LARGE_OBJECT_SIZE - 256)/sizeof(WCHAR) or less.
-        ; This will avoid avoid all overflow problems, as well as making sure
+        ; This will avoid all overflow problems, as well as making sure
         ; big string objects are correctly allocated in the big object heap.
 
         cmp     ecx, (ASM_LARGE_OBJECT_SIZE - 256)/2
@@ -588,7 +588,7 @@ LEAF_ENTRY AllocateStringFastUP, _TEXT
 
         ; Instead of doing elaborate overflow checks, we just limit the number of elements
         ; to (LARGE_OBJECT_SIZE - 256)/sizeof(WCHAR) or less.
-        ; This will avoid avoid all overflow problems, as well as making sure
+        ; This will avoid all overflow problems, as well as making sure
         ; big string objects are correctly allocated in the big object heap.
 
         cmp     ecx, (ASM_LARGE_OBJECT_SIZE - 256)/2
index 072f8b1a9b70c1c492f0d73c5b53a6a9ed7966e1..889c355f08dbaa01518fd5107f6a9f638cbcc52b 100644 (file)
@@ -527,7 +527,7 @@ MethodTable* Module::CreateArrayMethodTable(TypeHandle elemTypeHnd, CorElementTy
     }
 
     // The type is sufficiently initialized for most general purpose accessor methods to work.
-    // Mark the type as restored to avoid avoid asserts. Note that this also enables IBC logging.
+    // Mark the type as restored to avoid asserts. Note that this also enables IBC logging.
     pMTWriteableData->SetIsFullyLoadedForBuildMethodTable();
 
     {
index ff0ea93a3e07e6af35daaaae7a119d17b201eabe..949b115ce25ae4fea65161be295210f2b63dca2e 100644 (file)
@@ -1227,7 +1227,7 @@ void *JIT_TrialAlloc::GenAllocString(Flags flags)
 
     // Instead of doing elaborate overflow checks, we just limit the number of elements
     // to (LARGE_OBJECT_SIZE - 256)/sizeof(WCHAR) or less.
-    // This will avoid avoid all overflow problems, as well as making sure
+    // This will avoid all overflow problems, as well as making sure
     // big string objects are correctly allocated in the big object heap.
 
     _ASSERTE(sizeof(WCHAR) == 2);