diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-07 22:24:35 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-07 22:24:35 +0000 |
commit | 2e09a79ada1f6d92809a037d41895e3d9302ad59 (patch) | |
tree | 999c9d18279a7de289937116273ae4016356aa3a /stdio-common/tfformat.c | |
parent | 8e254d8e0d0820716e0ccf5f2b89c4fd1325f051 (diff) | |
download | glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.gz glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.xz glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.zip |
Avoid use of "register" as optimization hint.
Diffstat (limited to 'stdio-common/tfformat.c')
-rw-r--r-- | stdio-common/tfformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/tfformat.c b/stdio-common/tfformat.c index 7704ddde39..5cb366dd48 100644 --- a/stdio-common/tfformat.c +++ b/stdio-common/tfformat.c @@ -4050,7 +4050,7 @@ sprint_double_type sprint_doubles[] = int required_precision = 13; static int -matches (register char *result, register const char *desired) +matches (char *result, const char *desired) { int digits_seen = 0; for (;; result++, desired++) { |