summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-10-15 11:22:33 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-10-15 11:22:33 +0000
commit97f4e082ff0f6aa13ef9e30cd611c1e9246ca7a6 (patch)
treeaca45f2863b079e52a32b2030ff91caaae9bfbcd
parent79f11fca3a617e59131832d7dfdcc36cb942a300 (diff)
downloadcompiler-rt-97f4e082ff0f6aa13ef9e30cd611c1e9246ca7a6.tar.gz
compiler-rt-97f4e082ff0f6aa13ef9e30cd611c1e9246ca7a6.tar.bz2
compiler-rt-97f4e082ff0f6aa13ef9e30cd611c1e9246ca7a6.tar.xz
Fix a typo.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@192685 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/asan/lit_tests/TestCases/allocator_returns_null.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asan/lit_tests/TestCases/allocator_returns_null.cc b/lib/asan/lit_tests/TestCases/allocator_returns_null.cc
index 866ce90e..595c9e25 100644
--- a/lib/asan/lit_tests/TestCases/allocator_returns_null.cc
+++ b/lib/asan/lit_tests/TestCases/allocator_returns_null.cc
@@ -1,5 +1,5 @@
// Test the behavior of malloc/calloc/realloc when the allocation size is huge.
-// By default (allocator_may_return_null=0) the process shoudl crash.
+// By default (allocator_may_return_null=0) the process should crash.
// With allocator_may_return_null=1 the allocator should return 0.
//
// RUN: %clangxx_asan -O0 %s -o %t