From: Petr Hosek Date: Tue, 16 Oct 2018 02:06:08 +0000 (+0000) Subject: [XRay] Use fully qualified name for LogWriter X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4886652773b17626818198481d67a56427c6adf1;p=platform%2Fupstream%2Fllvm.git [XRay] Use fully qualified name for LogWriter This avoids the build error in newer versions of GCC. llvm-svn: 344579 --- diff --git a/compiler-rt/lib/xray/xray_basic_logging.cc b/compiler-rt/lib/xray/xray_basic_logging.cc index 2dc0e05..cd8ee8f 100644 --- a/compiler-rt/lib/xray/xray_basic_logging.cc +++ b/compiler-rt/lib/xray/xray_basic_logging.cc @@ -60,7 +60,7 @@ struct alignas(64) ThreadLocalData { void *ShadowStack = nullptr; size_t StackSize = 0; size_t StackEntries = 0; - LogWriter *LogWriter = nullptr; + __xray::LogWriter *LogWriter = nullptr; }; struct BasicLoggingOptions {