mirror of git://sourceware.org/git/glibc.git
string: Suppress clang confstr -Wignored-attributes on strlen
clang warns that the alias will be always resolve to __strlen even if weak definition of __GI_strlen is overridden, which is really the intention.
This commit is contained in:
parent
0fd37443f1
commit
247526a5a3
|
@ -48,5 +48,10 @@ __strlen (const char *str)
|
|||
}
|
||||
#ifndef STRLEN
|
||||
weak_alias (__strlen, strlen)
|
||||
/* clang warns that the alias will be always resolve to __strlen even if weak
|
||||
definition of __GI_strlen is overridden, which is really the intention. */
|
||||
DIAG_PUSH_NEEDS_COMMENT_CLANG;
|
||||
DIAG_IGNORE_NEEDS_COMMENT_CLANG (16, "-Wignored-attributes");
|
||||
libc_hidden_builtin_def (strlen)
|
||||
DIAG_POP_NEEDS_COMMENT_CLANG;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue