aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/jcf-io.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/jcf-io.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/jcf-io.c')
-rw-r--r--gcc/java/jcf-io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/java/jcf-io.c b/gcc/java/jcf-io.c
index fb8d00f..101be8e 100644
--- a/gcc/java/jcf-io.c
+++ b/gcc/java/jcf-io.c
@@ -619,7 +619,7 @@ jcf_print_char (FILE *stream, int ch)
/* Print UTF8 string at STR of length LENGTH bytes to STREAM. */
void
-jcf_print_utf8 (FILE *stream, register const unsigned char *str, int length)
+jcf_print_utf8 (FILE *stream, const unsigned char *str, int length)
{
const unsigned char * limit = str + length;
while (str < limit)
@@ -713,7 +713,7 @@ format_uint (char *buffer, uint64 value, int base)
{
#define WRITE_BUF_SIZE (4 + sizeof(uint64) * 8)
char buf[WRITE_BUF_SIZE];
- register char *buf_ptr = buf+WRITE_BUF_SIZE; /* End of buf. */
+ char *buf_ptr = buf+WRITE_BUF_SIZE; /* End of buf. */
int chars_written;
int i;