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 /time/tzset.c | |
parent | 8e254d8e0d0820716e0ccf5f2b89c4fd1325f051 (diff) | |
download | glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.gz glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.bz2 glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.zip |
Avoid use of "register" as optimization hint.
Diffstat (limited to 'time/tzset.c')
-rw-r--r-- | time/tzset.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/time/tzset.c b/time/tzset.c index 843f661fb8..0064cb0133 100644 --- a/time/tzset.c +++ b/time/tzset.c @@ -300,7 +300,7 @@ __tzset_parse_tz (tz) /* Figure out the standard <-> DST rules. */ for (unsigned int whichrule = 0; whichrule < 2; ++whichrule) { - register tz_rule *tzr = &tz_rules[whichrule]; + tz_rule *tzr = &tz_rules[whichrule]; /* Ignore comma to support string following the incorrect specification in early POSIX.1 printings. */ @@ -400,7 +400,7 @@ tzset_internal (always, explicit) int explicit; { static int is_initialized; - register const char *tz; + const char *tz; if (is_initialized && !always) return; @@ -471,7 +471,7 @@ compute_change (rule, year) tz_rule *rule; int year; { - register time_t t; + time_t t; if (year != -1 && rule->computed_for == year) /* Operations on times in 2 BC will be slower. Oh well. */ |