[sanitizers] disabling LateInitialize call to fix the build.

http://reviews.llvm.org/rL269291 introduced a memory leak.
Disabling offending call temprorary rather than rolling back the chain
of CLs.

llvm-svn: 269799
This commit is contained in:
Mike Aizatsky 2016-05-17 18:44:21 +00:00
parent 8e96c3e9dd
commit 599eef49e5
2 changed files with 4 additions and 2 deletions

View File

@ -553,7 +553,8 @@ static void AsanInitInternal() {
InitializeSuppressions();
Symbolizer::LateInitialize();
// TODO(kuba) Fix Me.
// Symbolizer::LateInitialize();
VReport(1, "AddressSanitizer Init done\n");
}

View File

@ -371,7 +371,8 @@ void Initialize(ThreadState *thr) {
ctx->initialized = true;
#ifndef SANITIZER_GO
Symbolizer::LateInitialize();
// TODO(kuba) Fix Me.
// Symbolizer::LateInitialize();
#endif
if (flags()->stop_on_start) {