aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/friend.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-12-19 23:28:11 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-12-19 23:28:11 +0000
commit926ce8bd97ca33f20282e7fcaa83741e67aaed16 (patch)
treedb50c20cd761100b68a6e16b3181750fe3f14753 /gcc/cp/friend.c
parent49a27995217d813ec99f6c8b4be15c04cf668c57 (diff)
downloadgcc-926ce8bd97ca33f20282e7fcaa83741e67aaed16.zip
gcc-926ce8bd97ca33f20282e7fcaa83741e67aaed16.tar.gz
gcc-926ce8bd97ca33f20282e7fcaa83741e67aaed16.tar.bz2
cvt.c: Remove uses of "register" specifier in declarations of arguments and local...
* cvt.c: Remove uses of "register" specifier in declarations of arguments and local variables. * decl.c: Likewise. * decl2.c: Likewise. * expr.c: Likewise. * friend.c: Likewise. * lex.c: Likewise. * name-lookup.c: Likewise. * repo.c: Likewise. * search.c: Likewise. * tree.c: Likewise. * typeck.c: Likewise. * typeck2.c: Likewise. From-SVN: r74855
Diffstat (limited to 'gcc/cp/friend.c')
-rw-r--r--gcc/cp/friend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/friend.c b/gcc/cp/friend.c
index 8605321..46616b1 100644
--- a/gcc/cp/friend.c
+++ b/gcc/cp/friend.c
@@ -39,7 +39,7 @@ int
is_friend (tree type, tree supplicant)
{
int declp;
- register tree list;
+ tree list;
tree context;
if (supplicant == NULL_TREE || type == NULL_TREE)