aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/words.h
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2006-01-24 23:48:01 +0000
committerMark Mitchell <mark@codesourcery.com>2006-01-24 23:48:01 +0000
commit0b06d9f4d3fc3b7383654e28f504413db914c73e (patch)
treed1d42f56695e44860e0a905876231095b81bb3a2 /sim/ppc/words.h
parent065cc494d9c0e8bbad0ec35bcbb0876f0ec5ea67 (diff)
downloadgdb-0b06d9f4d3fc3b7383654e28f504413db914c73e.zip
gdb-0b06d9f4d3fc3b7383654e28f504413db914c73e.tar.gz
gdb-0b06d9f4d3fc3b7383654e28f504413db914c73e.tar.bz2
* words.h (signed32): Define as "int".
(unsigned32): Define as "unsigned int".
Diffstat (limited to 'sim/ppc/words.h')
-rw-r--r--sim/ppc/words.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/ppc/words.h b/sim/ppc/words.h
index 5bf2490..269fd4e 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;