forked from OSchip/llvm-project
[asan] Remove check for stack size
This has been introduced in r304598 and fails for increased stack sizes. Differential Revision: https://reviews.llvm.org/D34876 llvm-svn: 307127
This commit is contained in:
parent
80bc4a5554
commit
5b14061848
|
|
@ -200,7 +200,6 @@ FakeStack *AsanThread::AsyncSignalSafeLazyInitFakeStack() {
|
|||
uptr stack_size = this->stack_size();
|
||||
if (stack_size == 0) // stack_size is not yet available, don't use FakeStack.
|
||||
return nullptr;
|
||||
CHECK_LE(stack_size, 0x10000000);
|
||||
uptr old_val = 0;
|
||||
// fake_stack_ has 3 states:
|
||||
// 0 -- not initialized
|
||||
|
|
|
|||
Loading…
Reference in New Issue