From e8a15d32f6e68d283ab5328c8a65bcb37214bc7e Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Wed, 25 Jan 2006 17:29:44 +0000 Subject: [PATCH] * words.h (natural32): Define as "int". --- sim/ppc/ChangeLog | 4 ++++ sim/ppc/words.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index f9bf0b7f61..a285c7a05f 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,3 +1,7 @@ +2006-01-25 Mark Mitchell + + * words.h (natural32): Define as "int". + 2006-01-23 Mark Mitchell * words.h (signed32): Define as "int". diff --git a/sim/ppc/words.h b/sim/ppc/words.h index 269fd4e43f..a3de1aa622 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;