summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
diff options
context:
space:
mode:
authorMike Aizatsky <aizatsky@chromium.org>2016-05-17 18:44:21 +0000
committerMike Aizatsky <aizatsky@chromium.org>2016-05-17 18:44:21 +0000
commit599eef49e5252e0e007cf63d27429f4842bbb41c (patch)
tree147d3381aa84179d324b1d62258128078ae52869 /compiler-rt/lib/tsan/rtl/tsan_rtl.cc
parent8e96c3e9dd714419f1c890860b9589679ed4f662 (diff)
downloadbcm5719-llvm-599eef49e5252e0e007cf63d27429f4842bbb41c.tar.gz
bcm5719-llvm-599eef49e5252e0e007cf63d27429f4842bbb41c.zip
[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
Diffstat (limited to 'compiler-rt/lib/tsan/rtl/tsan_rtl.cc')
-rw-r--r--compiler-rt/lib/tsan/rtl/tsan_rtl.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_rtl.cc b/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
index 629871ef8f7..03bda18c621 100644
--- a/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
+++ b/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
@@ -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) {
OpenPOWER on IntegriCloud