diff options
author | Dmitry Vyukov <dvyukov@google.com> | 2012-05-23 06:14:21 +0000 |
---|---|---|
committer | Dmitry Vyukov <dvyukov@google.com> | 2012-05-23 06:14:21 +0000 |
commit | 4a17675888cd61de28571bade60255fd01bdb757 (patch) | |
tree | eccb1364b5d6125032daa6bbb1b3deae163cb978 | |
parent | a4fd6d655a6e292074d613a0a448c0c0712e0350 (diff) | |
download | bcm5719-llvm-4a17675888cd61de28571bade60255fd01bdb757.tar.gz bcm5719-llvm-4a17675888cd61de28571bade60255fd01bdb757.zip |
asan: fix typo in comment
llvm-svn: 157314
-rw-r--r-- | compiler-rt/lib/asan/asan_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_linux.cc b/compiler-rt/lib/asan/asan_linux.cc index 134f8fda3f2..1e5ceae4ed7 100644 --- a/compiler-rt/lib/asan/asan_linux.cc +++ b/compiler-rt/lib/asan/asan_linux.cc @@ -247,7 +247,7 @@ void AsanThread::SetThreadStackTopAndBottom() { stacksize = end - prev_end; // When running with unlimited stack size, we still want to set some limit. // The unlimited stack size is caused by 'ulimit -s unlimited'. - // Also, for some reason, GNU make spawns subrocesses with unlimited stack. + // Also, for some reason, GNU make spawns subprocesses with unlimited stack. if (stacksize > kMaxThreadStackSize) stacksize = kMaxThreadStackSize; stack_top_ = end; |