bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 2/8] inttostr: port --enable-gcc-warnings to clang


From: Paul Eggert
Subject: [PATCH 2/8] inttostr: port --enable-gcc-warnings to clang
Date: Wed, 15 May 2013 00:35:44 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130510 Thunderbird/17.0.6

* lib/anytostr.c [__clang__]: Ignore -Wtautological-compare.
---
 ChangeLog      | 3 +++
 lib/anytostr.c | 2 ++
 2 files changed, 5 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index b7aceaa..b69e4d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2013-05-15  Paul Eggert  <address@hidden>
 
+       inttostr: port --enable-gcc-warnings to clang
+       * lib/anytostr.c [__clang__]: Ignore -Wtautological-compare.
+
        warnings: port to clang
        Problem reported by Daniel P. Berrange via Eric Blake in
        <http://lists.gnu.org/archive/html/bug-gnulib/2013-05/msg00055.html>.
diff --git a/lib/anytostr.c b/lib/anytostr.c
index 1d2fca4..56ec28d 100644
--- a/lib/anytostr.c
+++ b/lib/anytostr.c
@@ -20,6 +20,8 @@
 /* Tell gcc not to warn about the (i < 0) test, below.  */
 #if (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) || 4 < __GNUC__
 # pragma GCC diagnostic ignored "-Wtype-limits"
+#elif defined __clang__
+# pragma clang diagnostic ignored "-Wtautological-compare"
 #endif
 
 #include <config.h>
-- 
1.7.11.7





reply via email to

[Prev in Thread] Current Thread [Next in Thread]