summaryrefslogtreecommitdiff
path: root/sim/ppc
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2006-01-25 17:29:44 +0000
committerMark Mitchell <mark@codesourcery.com>2006-01-25 17:29:44 +0000
commit1f8120e6f9a80353caa90b67bccc89a702efde10 (patch)
tree07fe58e24e0e182a398263f3b155cbaa785f8a93 /sim/ppc
parentf5cc813c61a4569af4a3c102ab20e47542ac7fe0 (diff)
downloadgdb-1f8120e6f9a80353caa90b67bccc89a702efde10.tar.gz
* words.h (natural32): Define as "int".
Diffstat (limited to 'sim/ppc')
-rw-r--r--sim/ppc/ChangeLog4
-rw-r--r--sim/ppc/words.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog
index f9bf0b7f618..a285c7a05f3 100644
--- a/sim/ppc/ChangeLog
+++ b/sim/ppc/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-25 Mark Mitchell <mark@codesourcery.com>
+
+ * words.h (natural32): Define as "int".
+
2006-01-23 Mark Mitchell <mark@codesourcery.com>
* words.h (signed32): Define as "int".
diff --git a/sim/ppc/words.h b/sim/ppc/words.h
index 269fd4e43f8..a3de1aa6220 100644
--- a/sim/ppc/words.h
+++ b/sim/ppc/words.h
@@ -51,7 +51,7 @@
/* bit based */
typedef char natural8;
typedef short natural16;
-typedef long natural32;
+typedef int natural32;
typedef signed char signed8;
typedef signed short signed16;