[PR19620][GAS][AArch64]Remove mov[z,k,n] relocation symbol name restriction.
[deliverable/binutils-gdb.git] / gas / input-file.c
index a864e4bdc812744b97d27c668ae47ab11726a74c..08ffa46b6d998019188e40aa8d4b6785a35892da 100644 (file)
@@ -1,7 +1,5 @@
 /* input_file.c - Deal with Input Files -
-   Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1999, 2000, 2001,
-   2002, 2003, 2005, 2006, 2007, 2009, 2012
-   Free Software Foundation, Inc.
+   Copyright (C) 1987-2016 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
@@ -81,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);
 
@@ -100,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.  */
 
@@ -218,7 +216,7 @@ input_file_get (char *buf, size_t buflen)
 
   if (feof (f_in))
     return 0;
-  
+
   size = fread (buf, sizeof (char), buflen, f_in);
   if (ferror (f_in))
     as_bad (_("can't read from %s: %s"), file_name, xstrerror (errno));
This page took 0.023556 seconds and 4 git commands to generate.