[asan] undo the previous commit since TLS hack breaks with signals... :(

llvm-svn: 190662
This commit is contained in:
Kostya Serebryany 2013-09-13 06:15:02 +00:00
parent 096413ba3b
commit c19851ab6c
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ static FakeStack *GetFakeStack() {
}
static FakeStack *GetFakeStackFast() {
#if SANITIZER_LINUX
#if 0 && SANITIZER_LINUX // breaks with signals...
static THREADLOCAL FakeStack *fake_stack;
if (!fake_stack)
fake_stack = GetFakeStack();