Test commit to verify repository access and fix a typo.
authorDerek Bruening <bruening@google.com>
Tue, 22 Mar 2016 22:32:03 +0000 (22:32 +0000)
committerDerek Bruening <bruening@google.com>
Tue, 22 Mar 2016 22:32:03 +0000 (22:32 +0000)
llvm-svn: 264112

compiler-rt/lib/asan/asan_globals.cc

index f2cc449..ae2cfd7 100644 (file)
@@ -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.