Browse Source

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__.
msnyder-tracepoint-checkpoint-branch
Manoj Iyer 22 years ago
parent
commit
3f6da72206
  1. 4
      sim/common/ChangeLog
  2. 10
      sim/common/sim-types.h

4
sim/common/ChangeLog

@ -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.

10
sim/common/sim-types.h

@ -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;

Loading…
Cancel
Save