summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2006-01-24 23:48:37 +0000
committerMark Mitchell <mark@codesourcery.com>2006-01-24 23:48:37 +0000
commit6d1a92cc1f8b75eb234a4b370581ce6b672d36c7 (patch)
tree431dd8ec1b654d23e1548c124c167ef4241d7afb
parent25473b5709b82b605d0c6645398ae182d84bd9f2 (diff)
downloadgdb-6d1a92cc1f8b75eb234a4b370581ce6b672d36c7.tar.gz
* words.h (signed32): Define as "int".
(unsigned32): Define as "unsigned int".
-rw-r--r--sim/ppc/ChangeLog5
-rw-r--r--sim/ppc/words.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog
index fe32804f21c..c8ce1916461 100644
--- a/sim/ppc/ChangeLog
+++ b/sim/ppc/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-23 Mark Mitchell <mark@codesourcery.com>
+
+ * words.h (signed32): Define as "int".
+ (unsigned32): Define as "unsigned int".
+
2005-07-15 Ben Elliston <bje@au.ibm.com>
* hw_htab.c (bfd_get_section_lma): Remove macro; use BFD's.
diff --git a/sim/ppc/words.h b/sim/ppc/words.h
index 5bf24907802..269fd4e43f8 100644
--- a/sim/ppc/words.h
+++ b/sim/ppc/words.h
@@ -55,11 +55,11 @@ typedef long natural32;
typedef signed char signed8;
typedef signed short signed16;
-typedef signed long signed32;
+typedef signed int signed32;
typedef unsigned char unsigned8;
typedef unsigned short unsigned16;
-typedef unsigned long unsigned32;
+typedef unsigned int unsigned32;
#ifdef __GNUC__
typedef long long natural64;