unsigned32 and unsigned64 is multiply defined in sim-types.h.
authorManoj Iyer <manjo@austin.ibm.com>
Wed, 20 Apr 2005 15:21:37 +0000 (15:21 +0000)
committerManoj Iyer <manjo@austin.ibm.com>
Wed, 20 Apr 2005 15:21:37 +0000 (15:21 +0000)
2005-04-20  Manoj Iyer  <manjo@austin.ibm.com>
* sim-types.h: Changed unsigned32 and unsigned64 to signed32
and signed64 for __ALPHA__.

sim/common/ChangeLog
sim/common/sim-types.h

index 0f3cd62..684b81f 100644 (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.
index 5e97f07..b03e394 100644 (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;