summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/gas/input-file.c
diff options
context:
space:
mode:
Diffstat (limited to 'binutils-2.25/gas/input-file.c')
-rw-r--r--binutils-2.25/gas/input-file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils-2.25/gas/input-file.c b/binutils-2.25/gas/input-file.c
index 354ff56c..f1f2ec58 100644
--- a/binutils-2.25/gas/input-file.c
+++ b/binutils-2.25/gas/input-file.c
@@ -79,7 +79,7 @@ input_file_buffer_size (void)
char *
input_file_push (void)
{
- register struct saved_file *saved;
+ struct saved_file *saved;
saved = (struct saved_file *) xmalloc (sizeof *saved);
@@ -98,7 +98,7 @@ input_file_push (void)
void
input_file_pop (char *arg)
{
- register struct saved_file *saved = (struct saved_file *) arg;
+ struct saved_file *saved = (struct saved_file *) arg;
input_file_end (); /* Close out old file. */