[compiler-rt] r233044 - [TSan] Disable -Wno-maybe-uninitialized in yet another place.

Alexey Samsonov vonosmas at gmail.com
Mon Mar 23 17:38:43 PDT 2015


Author: samsonov
Date: Mon Mar 23 19:38:43 2015
New Revision: 233044

URL: http://llvm.org/viewvc/llvm-project?rev=233044&view=rev
Log:
[TSan] Disable -Wno-maybe-uninitialized in yet another place.

Modified:
    compiler-rt/trunk/lib/tsan/rtl/Makefile.old

Modified: compiler-rt/trunk/lib/tsan/rtl/Makefile.old
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/Makefile.old?rev=233044&r1=233043&r2=233044&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/Makefile.old (original)
+++ compiler-rt/trunk/lib/tsan/rtl/Makefile.old Mon Mar 23 19:38:43 2015
@@ -15,6 +15,7 @@ CXXFLAGS+=$(CFLAGS)
 ifeq ($(DEBUG), 0)
   CXXFLAGS+=-fomit-frame-pointer
 ifeq ($(CXX), g++)
+  CXXFLAGS+=-Wno-maybe-uninitialized
   CXXFLAGS+=-Wframe-larger-than=512
 endif  # CXX=g++
 endif  # DEBUG=0





More information about the llvm-commits mailing list