From d32658fe26d42d54332a7bd3734634d357dafd4e Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Fri, 24 Apr 1998 09:59:22 +0000 Subject: [PATCH] Drop leading `_' from macros. --- sim/common/ChangeLog | 5 +++++ sim/common/sim-types.h | 18 +++++++++++++----- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 4109742605a..767ee0baa54 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 24 19:57:59 1998 Andrew Cagney + + * sim-config.h: Discard leading _ from macros. + * sim-types.h: Ditto. + Wed Apr 22 14:14:19 1998 Michael Meissner * Make-common.in (CSEARCH): Add -I to intl directories. diff --git a/sim/common/sim-types.h b/sim/common/sim-types.h index 3b6d6ad2852..5a86d251980 100644 --- a/sim/common/sim-types.h +++ b/sim/common/sim-types.h @@ -23,10 +23,8 @@ /* Basic type sizes for the PowerPC */ -#ifndef _SIM_TYPES_H_ -#define _SIM_TYPES_H_ - - +#ifndef SIM_TYPES_H +#define SIM_TYPES_H /* INTEGER QUANTITIES: @@ -45,6 +43,16 @@ word size (32/64 bits) *_cell Size based on the target architecture's IEEE 1275 cell size (almost always 32 bits) + *_address Fits target address + + NONSPECIFIC + + address_word + Alias for unsigned_address + + cell_word Alias for signed_cell + + fp_word Holds a floating point word. */ @@ -170,4 +178,4 @@ typedef unsigned32 fp_word; #endif -#endif /* _SIM_TYPES_H_ */ +#endif -- 2.30.2