aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-08-07 23:55:23 -0700
committerKazu Hirata <kazu@google.com>2022-08-07 23:55:24 -0700
commit0e37ef0186acf071994ea80dde788c397822ed72 (patch)
treef031d2247568045cb5bedb6ae0f5f0a2d1af48bf /llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
parentd3651aa697c6a099768ffdde3f3c26a42f113268 (diff)
downloadllvm-0e37ef0186acf071994ea80dde788c397822ed72.zip
llvm-0e37ef0186acf071994ea80dde788c397822ed72.tar.gz
llvm-0e37ef0186acf071994ea80dde788c397822ed72.tar.bz2
[Transforms] Fix comment typos (NFC)
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp')
-rw-r--r--llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
index d4aa31d..772a1d8 100644
--- a/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
@@ -379,7 +379,7 @@ static bool shouldInstrumentReadWriteFromAddress(const Module *M, Value *Addr) {
return false;
}
- // Do not instrument acesses from different address spaces; we cannot deal
+ // Do not instrument accesses from different address spaces; we cannot deal
// with them.
if (Addr) {
Type *PtrTy = cast<PointerType>(Addr->getType()->getScalarType());