From 5a49b8acf456d4a049c002fae31b83a10b35e6f8 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 12 Aug 2008 23:39:31 +0000 Subject: Banish PARAMS and PTR. Convert to ISO C. Delete unnecessary forward declarations. --- gas/config/tc-vax.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gas/config/tc-vax.c') diff --git a/gas/config/tc-vax.c b/gas/config/tc-vax.c index 980f759..b8cdec9 100644 --- a/gas/config/tc-vax.c +++ b/gas/config/tc-vax.c @@ -1,6 +1,6 @@ /* tc-vax.c - vax-specific - Copyright 1987, 1991, 1992, 1993, 1994, 1995, 1998, 2000, 2001, 2002, - 2003, 2004, 2005, 2006, 2007 + 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -959,11 +959,11 @@ vip_begin (int synthetic_too, /* 1 means include jXXX op-codes. */ op_hash = hash_new (); for (vP = votstrs; *vP->vot_name && !retval; vP++) - retval = hash_insert (op_hash, vP->vot_name, (PTR) &vP->vot_detail); + retval = hash_insert (op_hash, vP->vot_name, (void *) &vP->vot_detail); if (synthetic_too) for (vP = synthetic_votstrs; *vP->vot_name && !retval; vP++) - retval = hash_insert (op_hash, vP->vot_name, (PTR) &vP->vot_detail); + retval = hash_insert (op_hash, vP->vot_name, (void *) &vP->vot_detail); #ifndef CONST_TABLE vip_op_defaults (immediate, indirect, displen); -- cgit v1.1