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 /gmon | |
parent | 8e254d8e0d0820716e0ccf5f2b89c4fd1325f051 (diff) | |
download | glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.zip glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.gz glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.bz2 |
Avoid use of "register" as optimization hint.
Diffstat (limited to 'gmon')
-rw-r--r-- | gmon/gmon.c | 2 | ||||
-rw-r--r-- | gmon/mcount.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gmon/gmon.c b/gmon/gmon.c index 0d2ed05..9774d57 100644 --- a/gmon/gmon.c +++ b/gmon/gmon.c @@ -102,7 +102,7 @@ __monstartup (lowpc, highpc) u_long lowpc; u_long highpc; { - register int o; + int o; char *cp; struct gmonparam *p = &_gmonparam; diff --git a/gmon/mcount.c b/gmon/mcount.c index 5a4a249..0c2acd2 100644 --- a/gmon/mcount.c +++ b/gmon/mcount.c @@ -58,10 +58,10 @@ static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93"; */ _MCOUNT_DECL(frompc, selfpc) /* _mcount; may be static, inline, etc */ { - register ARCINDEX *frompcindex; - register struct tostruct *top, *prevtop; - register struct gmonparam *p; - register ARCINDEX toindex; + ARCINDEX *frompcindex; + struct tostruct *top, *prevtop; + struct gmonparam *p; + ARCINDEX toindex; int i; p = &_gmonparam; |