[compiler-rt] r177709 - asan: fix lint warning about line length
Dmitry Vyukov
dvyukov at google.com
Fri Mar 22 00:29:59 PDT 2013
Author: dvyukov
Date: Fri Mar 22 02:29:59 2013
New Revision: 177709
URL: http://llvm.org/viewvc/llvm-project?rev=177709&view=rev
Log:
asan: fix lint warning about line length
Modified:
compiler-rt/trunk/lib/asan/asan_thread.cc
Modified: compiler-rt/trunk/lib/asan/asan_thread.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_thread.cc?rev=177709&r1=177708&r2=177709&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_thread.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_thread.cc Fri Mar 22 02:29:59 2013
@@ -202,8 +202,8 @@ AsanThread *GetCurrentThread() {
// On Android, libc constructor is called _after_ asan_init, and cleans up
// TSD. Try to figure out if this is still the main thread by the stack
// address. We are not entirely sure that we have correct main thread
- // limits, so only do this magic on Android, and only if the found thread is
- // the main thread.
+ // limits, so only do this magic on Android, and only if the found thread
+ // is the main thread.
AsanThreadContext *tctx = GetThreadContextByTidLocked(0);
if (ThreadStackContainsAddress(tctx, &context)) {
SetCurrentThread(tctx->thread);
More information about the llvm-commits
mailing list