This is the mail archive of the binutils@sourceware.cygnus.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Patch for opcodes portability botch


OK guys,

Here is a revised patch. I include sysdep.h everywhere and don't include
ansidecl.h as sysdep.h includes it. (sysdep.h doesn't include <stdio.h> though,
so I didn't touch that.) Alan, Ian, is this patch OK?

--
Michael Sokolov		Harhan Engineering Laboratory
Public Service Agent	International Free Computing Task Force
			International Engineering and Science Task Force
			615 N GOOD LATIMER EXPY STE #4
			DALLAS TX 75204-5852 USA

Phone: +1-214-824-7693 (Harhan Eng Lab office)
E-mail: msokolov@ivan.Harhan.ORG (ARPA TCP/SMTP) (UUCP coming soon)

2000-04-13  Michael Sokolov  <msokolov@ivan.Harhan.ORG>

	* a29k-dis.c, alpha-dis.c, alpha-opc.c, arc-dis.c, arc-opc.c,
	avr-dis.c, d10v-dis.c, d10v-opc.c, d30v-dis.c, d30v-opc.c,
	disassemble.c, h8300-dis.c, h8500-dis.c, hppa-dis.c, i370-dis.c,
	i370-opc.c, i960-dis.c, m10200-dis.c, m10200-opc.c, m10300-dis.c,
	m10300-opc.c, m68k-dis.c, m68k-opc.c, m88k-dis.c, mcore-dis.c,
	mips-dis.c, mips-opc.c, mips16-opc.c, pj-dis.c, pj-opc.c, ppc-dis.c,
	ppc-opc.c, sh-dis.c, sparc-dis.c, sparc-opc.c, tic80-dis.c,
	tic80-opc.c, v850-dis.c, v850-opc.c, vax-dis.c, w65-dis.c, z8k-dis.c,
	z8kgen.c: Everyone includes sysdep.h. Remove ansidecl.h as sysdep.h
	includes it.

Index: a29k-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/a29k-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 a29k-dis.c
*** a29k-dis.c	1999/05/03 07:28:59	1.1.1.1
--- a29k-dis.c	2000/04/13 14:25:50
*************** You should have received a copy of the G
*** 18,23 ****
--- 18,24 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include "dis-asm.h"
  #include "opcode/a29k.h"
  
Index: alpha-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/alpha-dis.c,v
retrieving revision 1.2
diff -c -3 -p -r1.2 alpha-dis.c
*** alpha-dis.c	1999/06/21 10:11:49	1.2
--- alpha-dis.c	2000/04/13 14:25:50
*************** Software Foundation, 59 Temple Place - S
*** 21,27 ****
  02111-1307, USA.  */
  
  #include <stdio.h>
- #include "ansidecl.h"
  #include "sysdep.h"
  #include "dis-asm.h"
  #include "opcode/alpha.h"
--- 21,26 ----
Index: alpha-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/alpha-opc.c,v
retrieving revision 1.3
diff -c -3 -p -r1.3 alpha-opc.c
*** alpha-opc.c	1999/10/18 22:29:15	1.3
--- alpha-opc.c	2000/04/13 14:25:54
***************
*** 21,27 ****
     02111-1307, USA.  */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/alpha.h"
  #include "bfd.h"
  #include "opintl.h"
--- 21,27 ----
     02111-1307, USA.  */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/alpha.h"
  #include "bfd.h"
  #include "opintl.h"
Index: arc-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/arc-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 arc-dis.c
*** arc-dis.c	1999/05/03 07:28:59	1.1.1.1
--- arc-dis.c	2000/04/13 14:25:54
*************** You should have received a copy of the G
*** 16,21 ****
--- 16,22 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include "dis-asm.h"
  #include "opcode/arc.h"
  #include "elf-bfd.h"
Index: arc-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/arc-opc.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 arc-opc.c
*** arc-opc.c	1999/05/03 07:28:59	1.1.1.1
--- arc-opc.c	2000/04/13 14:25:57
***************
*** 17,23 ****
     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/arc.h"
  #include "opintl.h"
  
--- 17,23 ----
     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/arc.h"
  #include "opintl.h"
  
Index: avr-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/avr-dis.c,v
retrieving revision 1.2
diff -c -3 -p -r1.2 avr-dis.c
*** avr-dis.c	2000/04/03 14:17:43	1.2
--- avr-dis.c	2000/04/13 14:25:58
*************** along with this program; if not, write t
*** 18,23 ****
--- 18,24 ----
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  
+ #include "sysdep.h"
  #include "dis-asm.h"
  #include "opintl.h"
  
Index: d10v-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/d10v-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 d10v-dis.c
*** d10v-dis.c	1999/05/03 07:28:59	1.1.1.1
--- d10v-dis.c	2000/04/13 14:25:59
*************** Foundation, Inc., 59 Temple Place - Suit
*** 18,24 ****
  
  #include <stdio.h>
  
! #include "ansidecl.h"
  #include "opcode/d10v.h" 
  #include "dis-asm.h"
  
--- 18,24 ----
  
  #include <stdio.h>
  
! #include "sysdep.h"
  #include "opcode/d10v.h" 
  #include "dis-asm.h"
  
Index: d10v-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/d10v-opc.c,v
retrieving revision 1.3
diff -c -3 -p -r1.3 d10v-opc.c
*** d10v-opc.c	1999/11/22 15:13:26	1.3
--- d10v-opc.c	2000/04/13 14:26:00
*************** along with this file; see the file COPYI
*** 19,25 ****
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/d10v.h"
  
  
--- 19,25 ----
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/d10v.h"
  
  
Index: d30v-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/d30v-dis.c,v
retrieving revision 1.2
diff -c -3 -p -r1.2 d30v-dis.c
*** d30v-dis.c	2000/03/02 23:01:40	1.2
--- d30v-dis.c	2000/04/13 14:26:01
*************** You should have received a copy of the G
*** 15,20 ****
--- 15,21 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include <stdio.h>
  #include "opcode/d30v.h" 
  #include "dis-asm.h"
Index: d30v-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/d30v-opc.c,v
retrieving revision 1.5
diff -c -3 -p -r1.5 d30v-opc.c
*** d30v-opc.c	2000/03/27 20:17:02	1.5
--- d30v-opc.c	2000/04/13 14:26:03
*************** along with this file; see the file COPYI
*** 19,25 ****
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/d30v.h"
  
  /* This table is sorted. */
--- 19,25 ----
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/d30v.h"
  
  /* This table is sorted. */
Index: disassemble.c
===================================================================
RCS file: /cvs/src/src/opcodes/disassemble.c,v
retrieving revision 1.8
diff -c -3 -p -r1.8 disassemble.c
*** disassemble.c	2000/04/02 06:26:09	1.8
--- disassemble.c	2000/04/13 14:26:03
*************** You should have received a copy of the G
*** 16,22 ****
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
! #include "ansidecl.h"
  #include "dis-asm.h"
  
  #ifdef ARCH_all
--- 16,22 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
! #include "sysdep.h"
  #include "dis-asm.h"
  
  #ifdef ARCH_all
Index: h8300-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/h8300-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 h8300-dis.c
*** h8300-dis.c	1999/05/03 07:28:59	1.1.1.1
--- h8300-dis.c	2000/04/13 14:26:04
*************** Foundation, Inc., 59 Temple Place - Suit
*** 17,22 ****
--- 17,23 ----
  
  #define DEFINE_TABLE
  
+ #include "sysdep.h"
  #define h8_opcodes h8ops
  #include "opcode/h8300.h"
  #include "dis-asm.h"
Index: h8500-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/h8500-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 h8500-dis.c
*** h8500-dis.c	1999/05/03 07:28:59	1.1.1.1
--- h8500-dis.c	2000/04/13 14:26:04
*************** Foundation, Inc., 59 Temple Place - Suit
*** 20,25 ****
--- 20,26 ----
  #define DISASSEMBLER_TABLE
  #define DEFINE_TABLE
  
+ #include "sysdep.h"
  #include "h8500-opc.h"
  #include "dis-asm.h"
  #include "opintl.h"
Index: hppa-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/hppa-dis.c,v
retrieving revision 1.35
diff -c -3 -p -r1.35 hppa-dis.c
*** hppa-dis.c	1999/11/25 03:29:14	1.35
--- hppa-dis.c	2000/04/13 14:26:07
*************** You should have received a copy of the G
*** 18,24 ****
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
- #include <ansidecl.h>
  #include "sysdep.h"
  #include "dis-asm.h"
  #include "libhppa.h"
--- 18,23 ----
Index: i370-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/i370-dis.c,v
retrieving revision 1.1
diff -c -3 -p -r1.1 i370-dis.c
*** i370-dis.c	2000/02/23 13:52:23	1.1
--- i370-dis.c	2000/04/13 14:26:07
*************** along with this file; see the file COPYI
*** 21,27 ****
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
- #include "ansidecl.h"
  #include "sysdep.h"
  #include "dis-asm.h"
  #include "opcode/i370.h"
--- 21,26 ----
Index: i370-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/i370-opc.c,v
retrieving revision 1.1
diff -c -3 -p -r1.1 i370-opc.c
*** i370-opc.c	2000/02/23 13:52:23	1.1
--- i370-opc.c	2000/04/13 14:26:10
*************** Software Foundation, 59 Temple Place - S
*** 21,27 ****
  02111-1307, USA.  */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/i370.h"
  
  /* This file holds the i370 opcode table.  The opcode table
--- 21,27 ----
  02111-1307, USA.  */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/i370.h"
  
  /* This file holds the i370 opcode table.  The opcode table
Index: i960-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/i960-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 i960-dis.c
*** i960-dis.c	1999/05/03 07:28:59	1.1.1.1
--- i960-dis.c	2000/04/13 14:26:12
*************** along with this program; see the file CO
*** 16,21 ****
--- 16,22 ----
  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include "dis-asm.h"
  
  static const char *const reg_names[] = {
Index: m10200-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/m10200-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 m10200-dis.c
*** m10200-dis.c	1999/05/03 07:28:59	1.1.1.1
--- m10200-dis.c	2000/04/13 14:26:13
*************** Foundation, Inc., 59 Temple Place - Suit
*** 18,24 ****
  
  #include <stdio.h>
  
! #include "ansidecl.h"
  #include "opcode/mn10200.h" 
  #include "dis-asm.h"
  #include "opintl.h"
--- 18,24 ----
  
  #include <stdio.h>
  
! #include "sysdep.h"
  #include "opcode/mn10200.h" 
  #include "dis-asm.h"
  #include "opintl.h"
Index: m10200-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/m10200-opc.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 m10200-opc.c
*** m10200-opc.c	1999/05/03 07:28:59	1.1.1.1
--- m10200-opc.c	2000/04/13 14:26:14
*************** You should have received a copy of the G
*** 15,21 ****
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
! #include "ansidecl.h"
  #include "opcode/mn10200.h"
  
  
--- 15,21 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
! #include "sysdep.h"
  #include "opcode/mn10200.h"
  
  
Index: m10300-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/m10300-dis.c,v
retrieving revision 1.2
diff -c -3 -p -r1.2 m10300-dis.c
*** m10300-dis.c	1999/12/01 10:36:22	1.2
--- m10300-dis.c	2000/04/13 14:26:15
*************** Foundation, Inc., 59 Temple Place - Suit
*** 18,24 ****
  
  #include <stdio.h>
  
! #include "ansidecl.h"
  #include "opcode/mn10300.h" 
  #include "dis-asm.h"
  #include "opintl.h"
--- 18,24 ----
  
  #include <stdio.h>
  
! #include "sysdep.h"
  #include "opcode/mn10300.h" 
  #include "dis-asm.h"
  #include "opintl.h"
Index: m10300-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/m10300-opc.c,v
retrieving revision 1.5
diff -c -3 -p -r1.5 m10300-opc.c
*** m10300-opc.c	2000/04/01 22:03:31	1.5
--- m10300-opc.c	2000/04/13 14:26:21
*************** Foundation, Inc., 59 Temple Place - Suit
*** 17,23 ****
  
  /* This file is formatted at > 80 columns.  Attempting to read it on a
     screeen with less than 80 columns will be difficult.  */
! #include "ansidecl.h"
  #include "opcode/mn10300.h"
  
  
--- 17,23 ----
  
  /* This file is formatted at > 80 columns.  Attempting to read it on a
     screeen with less than 80 columns will be difficult.  */
! #include "sysdep.h"
  #include "opcode/mn10300.h"
  
  
Index: m68k-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/m68k-dis.c,v
retrieving revision 1.2
diff -c -3 -p -r1.2 m68k-dis.c
*** m68k-dis.c	1999/05/27 22:33:13	1.2
--- m68k-dis.c	2000/04/13 14:26:24
*************** You should have received a copy of the G
*** 16,21 ****
--- 16,22 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include "dis-asm.h"
  #include "floatformat.h"
  #include <libiberty.h>
Index: m68k-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/m68k-opc.c,v
retrieving revision 1.2
diff -c -3 -p -r1.2 m68k-opc.c
*** m68k-opc.c	1999/05/27 22:33:14	1.2
--- m68k-opc.c	2000/04/13 14:26:32
*************** along with this file; see the file COPYI
*** 19,25 ****
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  02111-1307, USA.  */
  
! #include "ansidecl.h"
  #include "opcode/m68k.h"
  
  #define one(x) ((unsigned int) (x) << 16)
--- 19,25 ----
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  02111-1307, USA.  */
  
! #include "sysdep.h"
  #include "opcode/m68k.h"
  
  #define one(x) ((unsigned int) (x) << 16)
Index: m88k-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/m88k-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 m88k-dis.c
*** m88k-dis.c	1999/05/03 07:28:59	1.1.1.1
--- m88k-dis.c	2000/04/13 14:26:33
*************** You should have received a copy of the G
*** 20,25 ****
--- 20,26 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include "dis-asm.h"
  #include "opcode/m88k.h"
  #include "opintl.h"
Index: mcore-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/mcore-dis.c,v
retrieving revision 1.11
diff -c -3 -p -r1.11 mcore-dis.c
*** mcore-dis.c	2000/02/10 21:41:11	1.11
--- mcore-dis.c	2000/04/13 14:26:33
*************** You should have received a copy of the G
*** 15,20 ****
--- 15,21 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include <stdio.h>
  #define STATIC_TABLE
  #define DEFINE_TABLE
Index: mips-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/mips-dis.c,v
retrieving revision 1.3
diff -c -3 -p -r1.3 mips-dis.c
*** mips-dis.c	2000/02/22 14:41:46	1.3
--- mips-dis.c	2000/04/13 14:26:35
*************** You should have received a copy of the G
*** 18,24 ****
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
- #include <ansidecl.h>
  #include "sysdep.h"
  #include "dis-asm.h"
  #include "opcode/mips.h"
--- 18,23 ----
Index: mips-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/mips-opc.c,v
retrieving revision 1.5
diff -c -3 -p -r1.5 mips-opc.c
*** mips-opc.c	2000/02/22 14:41:46	1.5
--- mips-opc.c	2000/04/13 14:26:39
*************** along with this file; see the file COPYI
*** 20,26 ****
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/mips.h"
  
  /* Short hand so the lines aren't too long.  */
--- 20,26 ----
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/mips.h"
  
  /* Short hand so the lines aren't too long.  */
Index: mips16-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/mips16-opc.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 mips16-opc.c
*** mips16-opc.c	1999/05/03 07:28:59	1.1.1.1
--- mips16-opc.c	2000/04/13 14:26:40
*************** Software Foundation, 59 Temple Place - S
*** 20,26 ****
  02111-1307, USA.  */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/mips.h"
  
  /* This is the opcodes table for the mips16 processor.  The format of
--- 20,26 ----
  02111-1307, USA.  */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/mips.h"
  
  /* This is the opcodes table for the mips16 processor.  The format of
Index: pj-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/pj-dis.c,v
retrieving revision 1.1
diff -c -3 -p -r1.1 pj-dis.c
*** pj-dis.c	1999/09/04 17:14:37	1.1
--- pj-dis.c	2000/04/13 14:26:40
*************** along with this program; if not, write t
*** 17,22 ****
--- 17,23 ----
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  
+ #include "sysdep.h"
  #include <stdio.h>
  #include "opcode/pj.h"
  #include "dis-asm.h"
Index: pj-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/pj-opc.c,v
retrieving revision 1.1
diff -c -3 -p -r1.1 pj-opc.c
*** pj-opc.c	1999/09/04 17:14:37	1.1
--- pj-opc.c	2000/04/13 14:26:42
*************** along with this program; if not, write t
*** 17,23 ****
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  
! #include "ansidecl.h"
  #include "opcode/pj.h"
  
  const pj_opc_info_t pj_opc_info[512] =
--- 17,23 ----
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  
! #include "sysdep.h"
  #include "opcode/pj.h"
  
  const pj_opc_info_t pj_opc_info[512] =
Index: ppc-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/ppc-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 ppc-dis.c
*** ppc-dis.c	1999/05/03 07:29:00	1.1.1.1
--- ppc-dis.c	2000/04/13 14:26:43
*************** along with this file; see the file COPYI
*** 19,25 ****
  Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
  #include <stdio.h>
- #include "ansidecl.h"
  #include "sysdep.h"
  #include "dis-asm.h"
  #include "opcode/ppc.h"
--- 19,24 ----
Index: ppc-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/ppc-opc.c,v
retrieving revision 1.3
diff -c -3 -p -r1.3 ppc-opc.c
*** ppc-opc.c	2000/04/02 06:26:09	1.3
--- ppc-opc.c	2000/04/13 14:26:53
*************** Software Foundation, 59 Temple Place - S
*** 20,26 ****
  02111-1307, USA.  */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/ppc.h"
  #include "opintl.h"
  
--- 20,26 ----
  02111-1307, USA.  */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/ppc.h"
  #include "opintl.h"
  
Index: sh-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/sh-dis.c,v
retrieving revision 1.3
diff -c -3 -p -r1.3 sh-dis.c
*** sh-dis.c	2000/04/05 21:22:59	1.3
--- sh-dis.c	2000/04/13 14:26:54
*************** You should have received a copy of the G
*** 15,20 ****
--- 15,21 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include <stdio.h>
  #define STATIC_TABLE
  #define DEFINE_TABLE
Index: sparc-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/sparc-dis.c,v
retrieving revision 1.2
diff -c -3 -p -r1.2 sparc-dis.c
*** sparc-dis.c	1999/07/08 16:14:07	1.2
--- sparc-dis.c	2000/04/13 14:26:56
*************** Foundation, Inc., 59 Temple Place - Suit
*** 17,23 ****
  
  #include <stdio.h>
  
- #include "ansidecl.h"
  #include "sysdep.h"
  #include "opcode/sparc.h"
  #include "dis-asm.h"
--- 17,22 ----
Index: sparc-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/sparc-opc.c,v
retrieving revision 1.3
diff -c -3 -p -r1.3 sparc-opc.c
*** sparc-opc.c	1999/06/07 12:44:48	1.3
--- sparc-opc.c	2000/04/13 14:27:05
*************** Boston, MA 02111-1307, USA.	*/
*** 24,30 ****
     slower, but would mess up some macros a bit.  xoxorich. */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/sparc.h"
  
  /* Some defines to make life easy.  */
--- 24,30 ----
     slower, but would mess up some macros a bit.  xoxorich. */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/sparc.h"
  
  /* Some defines to make life easy.  */
Index: tic80-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/tic80-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 tic80-dis.c
*** tic80-dis.c	1999/05/03 07:29:00	1.1.1.1
--- tic80-dis.c	2000/04/13 14:27:06
*************** Foundation, Inc., 59 Temple Place - Suit
*** 17,23 ****
  
  #include <stdio.h>
  
! #include "ansidecl.h"
  #include "opcode/tic80.h"
  #include "dis-asm.h"
  
--- 17,23 ----
  
  #include <stdio.h>
  
! #include "sysdep.h"
  #include "opcode/tic80.h"
  #include "dis-asm.h"
  
Index: tic80-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/tic80-opc.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 tic80-opc.c
*** tic80-opc.c	1999/05/03 07:29:00	1.1.1.1
--- tic80-opc.c	2000/04/13 14:27:09
*************** Software Foundation, 59 Temple Place - S
*** 19,25 ****
  02111-1307, USA.  */
  
  #include <stdio.h>
! #include "ansidecl.h"
  #include "opcode/tic80.h"
  
  /* This file holds various tables for the TMS320C80 (MVP).
--- 19,25 ----
  02111-1307, USA.  */
  
  #include <stdio.h>
! #include "sysdep.h"
  #include "opcode/tic80.h"
  
  /* This file holds various tables for the TMS320C80 (MVP).
Index: v850-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/v850-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 v850-dis.c
*** v850-dis.c	1999/05/03 07:29:00	1.1.1.1
--- v850-dis.c	2000/04/13 14:27:10
*************** Foundation, Inc., 59 Temple Place - Suit
*** 18,24 ****
  
  #include <stdio.h>
  
! #include "ansidecl.h"
  #include "opcode/v850.h" 
  #include "dis-asm.h"
  #include "opintl.h"
--- 18,24 ----
  
  #include <stdio.h>
  
! #include "sysdep.h"
  #include "opcode/v850.h" 
  #include "dis-asm.h"
  #include "opintl.h"
Index: v850-opc.c
===================================================================
RCS file: /cvs/src/src/opcodes/v850-opc.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 v850-opc.c
*** v850-opc.c	1999/05/03 07:29:00	1.1.1.1
--- v850-opc.c	2000/04/13 14:27:12
*************** You should have received a copy of the G
*** 15,21 ****
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
! #include "ansidecl.h"
  #include "opcode/v850.h"
  #include <stdio.h>
  #include "opintl.h"
--- 15,21 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
! #include "sysdep.h"
  #include "opcode/v850.h"
  #include <stdio.h>
  #include "opintl.h"
Index: vax-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/vax-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 vax-dis.c
*** vax-dis.c	1999/05/03 07:29:00	1.1.1.1
--- vax-dis.c	2000/04/13 14:27:13
*************** You should have received a copy of the G
*** 16,21 ****
--- 16,22 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include "opcode/vax.h"
  #include "dis-asm.h"
  
Index: w65-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/w65-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 w65-dis.c
*** w65-dis.c	1999/05/03 07:29:00	1.1.1.1
--- w65-dis.c	2000/04/13 14:27:13
*************** You should have received a copy of the G
*** 15,20 ****
--- 15,21 ----
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
+ #include "sysdep.h"
  #include <stdio.h>
  #define STATIC_TABLE
  #define DEFINE_TABLE
Index: z8k-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/z8k-dis.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 z8k-dis.c
*** z8k-dis.c	1999/05/03 07:29:00	1.1.1.1
--- z8k-dis.c	2000/04/13 14:27:13
*************** You should have received a copy of the G
*** 17,23 ****
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  
- #include <ansidecl.h>
  #include "sysdep.h"
  #include "dis-asm.h"
  
--- 17,22 ----
Index: z8kgen.c
===================================================================
RCS file: /cvs/src/src/opcodes/z8kgen.c,v
retrieving revision 1.1.1.1
diff -c -3 -p -r1.1.1.1 z8kgen.c
*** z8kgen.c	1999/05/03 07:29:01	1.1.1.1
--- z8kgen.c	2000/04/13 14:27:17
*************** Foundation, Inc., 59 Temple Place - Suit
*** 18,24 ****
  
  /* This program generates z8k-opc.h */
  
- #include <ansidecl.h>
  #include "sysdep.h"
  
  #define BYTE_INFO_LEN 10
--- 18,23 ----

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]