mirror of git://sourceware.org/git/glibc.git
math: Fix clang warnings for math/test-tgmath-ret.c
clang warns that since the global variables are only used to function calls (without being actually used), they are not needed and will not be emitted. Signed-off-by: H.J. Lu <hjl.tools@gmail.com> Reviewed-by: Sam James <sam@gentoo.org>
This commit is contained in:
parent
27a4b6421f
commit
03962d17c9
|
@ -21,13 +21,19 @@
|
||||||
#include <tgmath.h>
|
#include <tgmath.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <libc-diag.h>
|
||||||
|
|
||||||
|
/* clang warns the global variables are not needed and will not be emitted.
|
||||||
|
However they are used on the CHECK_RET_* macros. */
|
||||||
|
DIAG_PUSH_NEEDS_COMMENT_CLANG;
|
||||||
|
DIAG_IGNORE_NEEDS_COMMENT_CLANG (13, "-Wunneeded-internal-declaration");
|
||||||
static float fx;
|
static float fx;
|
||||||
static double dx;
|
static double dx;
|
||||||
static long double lx;
|
static long double lx;
|
||||||
static int rm = FP_INT_UPWARD;
|
static int rm = FP_INT_UPWARD;
|
||||||
static unsigned int width = 64;
|
static unsigned int width = 64;
|
||||||
static int errors = 0;
|
static int errors = 0;
|
||||||
|
DIAG_POP_NEEDS_COMMENT_CLANG;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
our_error (const char *c)
|
our_error (const char *c)
|
||||||
|
|
Loading…
Reference in New Issue