mirror of git://sourceware.org/git/glibc.git
riscv: Suppress clang confstr -Wignored-attributes feupdateenv
clang warns that the alias will be always resolve to __GI___feupdateenv even if weak definition of __GI_feupdateenv is overridden, which is really the intention.
This commit is contained in:
parent
6242d11345
commit
85ab293344
|
@ -27,4 +27,10 @@ __feupdateenv (const fenv_t *envp)
|
|||
}
|
||||
libm_hidden_def (__feupdateenv)
|
||||
weak_alias (__feupdateenv, feupdateenv)
|
||||
/* clang warns that the alias will be always resolve to __GI___feupdateenv
|
||||
even if weak definition of __GI_feupdateenv is overridden, which is really
|
||||
the intention. */
|
||||
DIAG_PUSH_NEEDS_COMMENT_CLANG;
|
||||
DIAG_IGNORE_NEEDS_COMMENT_CLANG (16, "-Wignored-attributes");
|
||||
libm_hidden_weak (feupdateenv)
|
||||
DIAG_POP_NEEDS_COMMENT_CLANG;
|
||||
|
|
Loading…
Reference in New Issue