From 3a976c72d6aa6f18f09c8f343c71394fe0af9b94 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sat, 20 Dec 2003 15:38:28 +0000 Subject: 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 --- gcc/java/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/java/expr.c') 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) -- cgit v1.1