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 /sysdeps/mach | |
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 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/getcwd.c | 2 | ||||
-rw-r--r-- | sysdeps/mach/i386/sysdep.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/getcwd.c b/sysdeps/mach/hurd/getcwd.c index 43e0a2ccc1..10822d2a78 100644 --- a/sysdeps/mach/hurd/getcwd.c +++ b/sysdeps/mach/hurd/getcwd.c @@ -45,7 +45,7 @@ _hurd_canonicalize_directory_name_internal (file_t thisdir, mach_port_t rootid, thisid, rootdevid, thisdevid; ino64_t rootino, thisino; char *file_name; - register char *file_namep; + char *file_namep; file_t parent; char *dirbuf = NULL; unsigned int dirbufsize = 0; diff --git a/sysdeps/mach/i386/sysdep.h b/sysdeps/mach/i386/sysdep.h index c26063c661..001fe98f5b 100644 --- a/sysdeps/mach/i386/sysdep.h +++ b/sysdeps/mach/i386/sysdep.h @@ -28,7 +28,7 @@ #define SNARF_ARGS(entry_sp, argc, argv, envp) \ do \ { \ - register char **p; \ + char **p; \ argc = (int) *entry_sp; \ argv = (char **) (entry_sp + 1); \ p = argv; \ |