]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gas/testsuite/gas/all/itbl-test.c
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gas / testsuite / gas / all / itbl-test.c
index 023f5d95beed1859e333047273ef828909d7a687..a64068bbf9151988df001649b847441a80c31ff5 100644 (file)
@@ -1,14 +1,12 @@
-
-
 /* itbl-test.c
 
-   Copyright (C) 1997  Free Software Foundation, Inc.
+   Copyright (C) 1997-2021 Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
    GAS is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2, or (at your option)
+   the Free Software Foundation; either version 3, or (at your option)
    any later version.
 
    GAS is distributed in the hope that it will be useful, 
@@ -18,8 +16,8 @@
 
    You should have received a copy of the GNU General Public License
    along with GAS; see the file COPYING.  If not, write to the Free
-   Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.  */
+   Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
+   02110-1301, USA.  */
 
 /* Stand-alone test for instruction specification table support.
    Run using "itbl-test <itbl> <asm.s>"
@@ -99,6 +97,7 @@ main (int argc, char **argv)
   test_reg (3, e_creg, "c2", 22);
   test_reg (3, e_dreg, "d3", 3);
 
+  fclose (fas);
   return 0;
 }
 
@@ -117,9 +116,9 @@ test_reg (e_processor processor, e_type type, char *name,
     printf ("name=%s found for processor=%d, type=%d, val=%d\n",
            n, processor, type, val);
 
-  /* We require that names be unique amoung processors and types. */
-  v = itbl_get_reg_val (name);
-  if (!v || v != val)
+  /* We require that names be unique among processors and types. */
+  if (! itbl_get_reg_val (name, &v)
+      || v != val)
     printf ("Error - reg val not found for processor=%d, type=%d, name=%s\n",
            processor, type, name);
   else