[llvm] r281492 - Fix typo in comment [NFC]

Etienne Bergeron via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 14 08:59:32 PDT 2016


Author: etienneb
Date: Wed Sep 14 10:59:32 2016
New Revision: 281492

URL: http://llvm.org/viewvc/llvm-project?rev=281492&view=rev
Log:
Fix typo in comment [NFC]

Modified:
    llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp

Modified: llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp?rev=281492&r1=281491&r2=281492&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp Wed Sep 14 10:59:32 2016
@@ -2500,7 +2500,7 @@ void FunctionStackPoisoner::poisonAlloca
 
 AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
   if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
-    // We're intested only in allocas we can handle.
+    // We're interested only in allocas we can handle.
     return ASan.isInterestingAlloca(*AI) ? AI : nullptr;
   // See if we've already calculated (or started to calculate) alloca for a
   // given value.




More information about the llvm-commits mailing list