public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/clang] intl: Fix clang -Wunused-but-set-variable on plural.c
@ 2022-10-04 12:56 Adhemerval Zanella
  0 siblings, 0 replies; 2+ messages in thread
From: Adhemerval Zanella @ 2022-10-04 12:56 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5a2579447f06d4d6f4d09dd40b86aeba8acf0086

commit 5a2579447f06d4d6f4d09dd40b86aeba8acf0086
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 24 11:13:23 2022 -0300

    intl: Fix clang -Wunused-but-set-variable on plural.c
    
    Clang warns that '__gettextnerrs' set but not used:
    
      intl/plural.c:1034:9: error: variable '__gettextnerrs' set but not used
      [-Werror,-Wunused-but-set-variable]
          int yynerrs = 0;
            ^
    
    Since the file is auto-generated, suppress the warning with a compiler
    flag.

Diff:
---
 intl/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/intl/Makefile b/intl/Makefile
index 315c75a18f..1c3b2a2273 100644
--- a/intl/Makefile
+++ b/intl/Makefile
@@ -154,7 +154,8 @@ $(objpfx)tst-gettext5.out: $(objpfx)tst-gettext.out
 $(objpfx)tst-gettext6.out: $(objpfx)tst-gettext.out
 
 CPPFLAGS += -D'LOCALEDIR="$(localedir)"' \
-	    -D'LOCALE_ALIAS_PATH="$(localedir)"'
+	    -D'LOCALE_ALIAS_PATH="$(localedir)"' \
+	    -Wno-unused-but-set-variable
 BISONFLAGS = --yacc --no-lines --name-prefix=__gettext --output
 
 $(inst_localedir)/locale.alias: locale.alias $(+force)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [glibc/azanella/clang] intl: Fix clang -Wunused-but-set-variable on plural.c
@ 2022-10-28 17:38 Adhemerval Zanella
  0 siblings, 0 replies; 2+ messages in thread
From: Adhemerval Zanella @ 2022-10-28 17:38 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=836327c2d4902a02e2eef651f95bc8bb97c5bd5e

commit 836327c2d4902a02e2eef651f95bc8bb97c5bd5e
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Wed Aug 24 11:13:23 2022 -0300

    intl: Fix clang -Wunused-but-set-variable on plural.c
    
    Clang warns that '__gettextnerrs' set but not used:
    
      intl/plural.c:1034:9: error: variable '__gettextnerrs' set but not used
      [-Werror,-Wunused-but-set-variable]
          int yynerrs = 0;
            ^
    
    Since the file is auto-generated, suppress the warning with a compiler
    flag.

Diff:
---
 intl/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/intl/Makefile b/intl/Makefile
index 315c75a18f..1c3b2a2273 100644
--- a/intl/Makefile
+++ b/intl/Makefile
@@ -154,7 +154,8 @@ $(objpfx)tst-gettext5.out: $(objpfx)tst-gettext.out
 $(objpfx)tst-gettext6.out: $(objpfx)tst-gettext.out
 
 CPPFLAGS += -D'LOCALEDIR="$(localedir)"' \
-	    -D'LOCALE_ALIAS_PATH="$(localedir)"'
+	    -D'LOCALE_ALIAS_PATH="$(localedir)"' \
+	    -Wno-unused-but-set-variable
 BISONFLAGS = --yacc --no-lines --name-prefix=__gettext --output
 
 $(inst_localedir)/locale.alias: locale.alias $(+force)

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-10-28 17:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-04 12:56 [glibc/azanella/clang] intl: Fix clang -Wunused-but-set-variable on plural.c Adhemerval Zanella
2022-10-28 17:38 Adhemerval Zanella

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).