From 3f6da7220654ac586c2322e1d005d72cc4372b23 Mon Sep 17 00:00:00 2001 From: Manoj Iyer Date: Wed, 20 Apr 2005 15:21:37 +0000 Subject: unsigned32 and unsigned64 is multiply defined in sim-types.h. 2005-04-20 Manoj Iyer * sim-types.h: Changed unsigned32 and unsigned64 to signed32 and signed64 for __ALPHA__. --- sim/common/ChangeLog | 4 ++++ sim/common/sim-types.h | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'sim') diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 0f3cd62..684b81fabd 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,7 @@ +2005-04-20 Manoj Iyer + * sim-types.h: Changed unsigned32 and unsigned64 to signed32 + and signed64 for __ALPHA__. + 2005-03-23 Mark Kettenis * aclocal.m4 Include ../../gettext.m4. diff --git a/sim/common/sim-types.h b/sim/common/sim-types.h index 5e97f07..b03e394 100644 --- a/sim/common/sim-types.h +++ b/sim/common/sim-types.h @@ -1,6 +1,6 @@ /* The common simulator framework for GDB, the GNU Debugger. - Copyright 2002 Free Software Foundation, Inc. + Copyright 2002, 2005 Free Software Foundation, Inc. Contributed by Andrew Cagney and Red Hat. @@ -112,11 +112,11 @@ typedef struct { signed64 a[2]; } signed128; typedef signed char signed8; typedef signed short signed16; #if defined (__ALPHA__) -typedef signed int unsigned32; -typedef signed long unsigned64; +typedef signed int signed32; +typedef signed long signed64; #else -typedef signed long unsigned32; -typedef signed long long unsigned64; +typedef signed long signed32; +typedef signed long long signed64; #endif typedef unsigned char unsigned8; -- cgit v1.1