]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* words.h (signed32): Define as "int".
authorMark Mitchell <mark@codesourcery.com>
Tue, 24 Jan 2006 23:48:37 +0000 (23:48 +0000)
committerMark Mitchell <mark@codesourcery.com>
Tue, 24 Jan 2006 23:48:37 +0000 (23:48 +0000)
(unsigned32): Define as "unsigned int".

sim/ppc/ChangeLog
sim/ppc/words.h

index fe32804f21cf060ccc9bb6c6e38c23ef7a4e8c07..c8ce1916461188a47ab2195b2509b3162f81fc1b 100644 (file)
@@ -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.
index 5bf24907802bc0e33634c9935034a792cc6b5d8b..269fd4e43f82e0dc0a7209baf95cceee0290fad5 100644 (file)
@@ -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;