diff options
author | Alexey Samsonov <samsonov@google.com> | 2012-06-26 11:33:51 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2012-06-26 11:33:51 +0000 |
commit | e2109388a4f010a6c250541b4e5f26024d8ab592 (patch) | |
tree | f094d3b95b7ac333b095a27059568222d095cb49 /compiler-rt/lib/tsan/Makefile.old | |
parent | 863d2d3235332f6cd52e7a137a2bfdf68d43b0d4 (diff) | |
download | bcm5719-llvm-e2109388a4f010a6c250541b4e5f26024d8ab592.tar.gz bcm5719-llvm-e2109388a4f010a6c250541b4e5f26024d8ab592.zip |
[TSan] fix warnings suppression: internal-linkage-in-inline was renamed to static-in-inline
llvm-svn: 159198
Diffstat (limited to 'compiler-rt/lib/tsan/Makefile.old')
-rw-r--r-- | compiler-rt/lib/tsan/Makefile.old | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/tsan/Makefile.old b/compiler-rt/lib/tsan/Makefile.old index 5740315ca15..b18630471bc 100644 --- a/compiler-rt/lib/tsan/Makefile.old +++ b/compiler-rt/lib/tsan/Makefile.old @@ -3,7 +3,7 @@ LDFLAGS=-ldl -lpthread -pie CXXFLAGS = -fPIE -g -Wall -Werror -DTSAN_DEBUG=$(DEBUG) # Silence warnings that Clang produces for gtest code. # Use -Wno-attributes so that gcc doesn't complain about unknown warning types. -CXXFLAGS += -Wno-unused-private-field -Wno-internal-linkage-in-inline -Wno-attributes +CXXFLAGS += -Wno-unused-private-field -Wno-static-in-inline -Wno-attributes ifeq ($(DEBUG), 0) CXXFLAGS += -O3 endif |