unsigned32 and unsigned64 is multiply defined in sim-types.h.

2005-04-20  Manoj Iyer  <manjo@austin.ibm.com>
	* sim-types.h: Changed unsigned32 and unsigned64 to signed32
	and signed64 for __ALPHA__.
This commit is contained in:
Manoj Iyer 2005-04-20 15:21:37 +00:00
parent ec7b76fec3
commit 3f6da72206
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2005-04-20 Manoj Iyer <manjo@austin.ibm.com>
* sim-types.h: Changed unsigned32 and unsigned64 to signed32
and signed64 for __ALPHA__.
2005-03-23 Mark Kettenis <kettenis@gnu.org>
* aclocal.m4 Include ../../gettext.m4.

View File

@ -1,6 +1,6 @@
/* The common simulator framework for GDB, the GNU Debugger.
Copyright 2002 Free Software Foundation, Inc.
Copyright 2002, 2005 Free Software Foundation, Inc.
Contributed by Andrew Cagney and Red Hat.
@ -112,11 +112,11 @@ typedef struct { signed64 a[2]; } signed128;
typedef signed char signed8;
typedef signed short signed16;
#if defined (__ALPHA__)
typedef signed int unsigned32;
typedef signed long unsigned64;
typedef signed int signed32;
typedef signed long signed64;
#else
typedef signed long unsigned32;
typedef signed long long unsigned64;
typedef signed long signed32;
typedef signed long long signed64;
#endif
typedef unsigned char unsigned8;