aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/expr.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-12-20 15:38:28 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-12-20 15:38:28 +0000
commit3a976c72d6aa6f18f09c8f343c71394fe0af9b94 (patch)
treeeec8d602036fe17dcf6d53ec4d030d1345cf301a /gcc/java/expr.c
parentaed8bfdc7ee77b96bc15ef4b21414f6b41645e24 (diff)
downloadgcc-3a976c72d6aa6f18f09c8f343c71394fe0af9b94.zip
gcc-3a976c72d6aa6f18f09c8f343c71394fe0af9b94.tar.gz
gcc-3a976c72d6aa6f18f09c8f343c71394fe0af9b94.tar.bz2
class.c: Remove uses of "register" specifier in declarations of arguments and local...
* class.c: Remove uses of "register" specifier in declarations of arguments and local variables. * decl.c: Likewise. * expr.c: Likewise. * gjavah.c: Likewise. * jcf-dump.c: Likewise. * jcf-io.c: Likewise. * jcf-parse.c: Likewise. * jcf-write.c: Likewise. * keyword.h: Likewise. * parse.y: Likewise. * typeck.c: Likewise. * verify.c: Likewise. From-SVN: r74882
Diffstat (limited to 'gcc/java/expr.c')
-rw-r--r--gcc/java/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/expr.c b/gcc/java/expr.c
index 8e7ea9d..533b88c 100644
--- a/gcc/java/expr.c
+++ b/gcc/java/expr.c
@@ -206,7 +206,7 @@ static void
flush_quick_stack (void)
{
int stack_index = stack_pointer;
- register tree prev, cur, next;
+ tree prev, cur, next;
/* First reverse the quick_stack, and count the number of slots it has. */
for (cur = quick_stack, prev = NULL_TREE; cur != NULL_TREE; cur = next)