]> granicus.if.org Git - llvm/commitdiff
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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281492 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/AddressSanitizer.cpp

index 7546414a2968280d62bf32ac7af64a784eccf9e8..a5972d459937e47d8da2ecf54e44d663e2805447 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.