diff options
author | Eric Christopher <echristo@gmail.com> | 2014-09-09 07:11:52 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-09-09 07:11:52 +0000 |
commit | 52dc3c852157f5be470afb464d0d26e9ace20c93 (patch) | |
tree | dea1bc5bdf5e0e486c702c9a8ca53c90a73beacb | |
parent | 94c13b577997dd972b9b50d2f558dba74852029a (diff) | |
download | bcm5719-llvm-52dc3c852157f5be470afb464d0d26e9ace20c93.tar.gz bcm5719-llvm-52dc3c852157f5be470afb464d0d26e9ace20c93.zip |
Fix comment and remove duplicated -Wno-sign-compare option.
llvm-svn: 217426
-rw-r--r-- | lldb/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/Makefile b/lldb/Makefile index 8d4e3532174..19b374d0956 100644 --- a/lldb/Makefile +++ b/lldb/Makefile @@ -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. |