[Lldb-commits] [lldb] r217426 - Fix comment and remove duplicated -Wno-sign-compare option.
Eric Christopher
echristo at gmail.com
Tue Sep 9 00:11:52 PDT 2014
Author: echristo
Date: Tue Sep 9 02:11:52 2014
New Revision: 217426
URL: http://llvm.org/viewvc/llvm-project?rev=217426&view=rev
Log:
Fix comment and remove duplicated -Wno-sign-compare option.
Modified:
lldb/trunk/Makefile
Modified: lldb/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/Makefile?rev=217426&r1=217425&r2=217426&view=diff
==============================================================================
--- lldb/trunk/Makefile (original)
+++ lldb/trunk/Makefile Tue Sep 9 02:11:52 2014
@@ -81,9 +81,8 @@ EXTRA_OPTIONS += -Wno-unknown-pragmas
# Drop -Wsign-compare, which we are not currently clean with.
EXTRA_OPTIONS += -Wno-sign-compare
-# Drop -Wunused-function and -Wunneeded-internal-declaration, which we are not
-# currently clean with.
-EXTRA_OPTIONS += -Wno-sign-compare -Wno-unused-function
+# Drop -Wunused-function which we are not currently clean with.
+EXTRA_OPTIONS += -Wno-unused-function
###
# LLDB Top Level specific stuff.
More information about the lldb-commits
mailing list