summaryrefslogtreecommitdiff
path: root/lib/asan
diff options
context:
space:
mode:
authorDerek Bruening <bruening@google.com>2016-03-22 22:32:03 +0000
committerDerek Bruening <bruening@google.com>2016-03-22 22:32:03 +0000
commit6eba2f0e94111c3ae01c91eec546ff8a14d1dc92 (patch)
tree2aabdbd1ba8279c7d775cef5051d1d2ddc84bd01 /lib/asan
parent1dc452421f253372daa1d2fa237573c538b2c6ca (diff)
Test commit to verify repository access and fix a typo.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@264112 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan')
-rw-r--r--lib/asan/asan_globals.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asan/asan_globals.cc b/lib/asan/asan_globals.cc
index f2cc449b7..ae2cfd719 100644
--- a/lib/asan/asan_globals.cc
+++ b/lib/asan/asan_globals.cc
@@ -178,7 +178,7 @@ static void CheckODRViolationViaPoisoning(const Global *g) {
}
// Clang provides two different ways for global variables protection:
-// it can poison the global itself or it's private alias. In former
+// it can poison the global itself or its private alias. In former
// case we may poison same symbol multiple times, that can help us to
// cheaply detect ODR violation: if we try to poison an already poisoned
// global, we have ODR violation error.