[llvm-commits] [compiler-rt] r157314 - /compiler-rt/trunk/lib/asan/asan_linux.cc
Dmitry Vyukov
dvyukov at google.com
Tue May 22 23:14:21 PDT 2012
Author: dvyukov
Date: Wed May 23 01:14:21 2012
New Revision: 157314
URL: http://llvm.org/viewvc/llvm-project?rev=157314&view=rev
Log:
asan: fix typo in comment
Modified:
compiler-rt/trunk/lib/asan/asan_linux.cc
Modified: compiler-rt/trunk/lib/asan/asan_linux.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_linux.cc?rev=157314&r1=157313&r2=157314&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_linux.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_linux.cc Wed May 23 01:14:21 2012
@@ -247,7 +247,7 @@
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;
More information about the llvm-commits
mailing list