diff options
author | Etienne Bergeron <etienneb@google.com> | 2016-09-14 15:59:32 +0000 |
---|---|---|
committer | Etienne Bergeron <etienneb@google.com> | 2016-09-14 15:59:32 +0000 |
commit | 9bd42810064a6eccbb52f176011b43c7a02c65ef (patch) | |
tree | e15ea3d2ae98ec6a3f9af2e7cab9ddbb0a3f33cd /llvm/lib | |
parent | 2bc198a333a3e6cf6b65e6a4d28018ab8a4efe18 (diff) | |
download | bcm5719-llvm-9bd42810064a6eccbb52f176011b43c7a02c65ef.tar.gz bcm5719-llvm-9bd42810064a6eccbb52f176011b43c7a02c65ef.zip |
Fix typo in comment [NFC]
llvm-svn: 281492
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 7546414a296..a5972d45993 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -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. |