diff options
author | Alan Modra <amodra@gmail.com> | 2008-08-12 23:39:31 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-08-12 23:39:31 +0000 |
commit | 5a49b8acf456d4a049c002fae31b83a10b35e6f8 (patch) | |
tree | c55c2f40551c32d774a8dfd9c61b5ba503dc954a /gas/config/tc-i860.c | |
parent | 11fa8e431388f2e50d86cd4af26b748eba56b10e (diff) | |
download | binutils-gdb-5a49b8acf456d4a049c002fae31b83a10b35e6f8.tar.gz |
Banish PARAMS and PTR. Convert to ISO C.
Delete unnecessary forward declarations.
Diffstat (limited to 'gas/config/tc-i860.c')
-rw-r--r-- | gas/config/tc-i860.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-i860.c b/gas/config/tc-i860.c index b2ba1eca455..b6ff7bcc655 100644 --- a/gas/config/tc-i860.c +++ b/gas/config/tc-i860.c @@ -1,6 +1,6 @@ /* tc-i860.c -- Assembler for the Intel i860 architecture. Copyright 1989, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002, - 2003, 2006, 2007 Free Software Foundation, Inc. + 2003, 2006, 2007, 2008 Free Software Foundation, Inc. Brought back from the dead and completely reworked by Jason Eckhardt <jle@cygnus.com>. @@ -221,7 +221,7 @@ md_begin (void) while (i860_opcodes[i].name != NULL) { const char *name = i860_opcodes[i].name; - retval = hash_insert (op_hash, name, (PTR)&i860_opcodes[i]); + retval = hash_insert (op_hash, name, (void *) &i860_opcodes[i]); if (retval != NULL) { fprintf (stderr, _("internal error: can't hash `%s': %s\n"), |