Fix typo in comment [NFC]
authorEtienne Bergeron <etienneb@google.com>
Wed, 14 Sep 2016 15:59:32 +0000 (15:59 +0000)
committerEtienne Bergeron <etienneb@google.com>
Wed, 14 Sep 2016 15:59:32 +0000 (15:59 +0000)
llvm-svn: 281492

llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp

index 7546414..a5972d4 100644 (file)
@@ -2500,7 +2500,7 @@ void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
 
 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.