gold: Suppress "unused" variable warning on Clang
authorTsukasa OI <research_trasio@irq.a4lg.com>
Mon, 26 Sep 2022 10:35:40 +0000 (10:35 +0000)
committerAlan Modra <amodra@gmail.com>
Tue, 27 Sep 2022 05:34:02 +0000 (15:04 +0930)
commitf7aa1a5acc5faa03ed6c640a426ef70a5f328940
tree45e205c439ab5e089b265d7acb01acd96ce20bf6
parent8818c80cbd4116ef5af171ec47c61167179e225c
gold: Suppress "unused" variable warning on Clang

Clang generates a warning if there is a variable that is set but not used
otherwise ("-Wunused-but-set-variable").  On the default configuration, it
causes a build failure (unless "--disable-werror" is specified).

Because the cause of this error is in the Bison-generated code
($(srcdir)/gold/yyscript.y -> $(builddir)/gold/yyscript.c),
this commit suppresses this warning ("-Wunused-but-set-variable") by placing
DIAGNOSTIC_IGNORE_UNUSED_BUT_SET_VARIABLE macro at the end of user
prologue on yyscript.y.

* yyscript.y: Suppress -Wunused-but-set-variable warning on
the Bison-generated code.
gold/yyscript.y