diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-04-24 09:59:22 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-04-24 09:59:22 +0000 |
commit | d32658fe26d42d54332a7bd3734634d357dafd4e (patch) | |
tree | 5f26647e8a987db2dfc44e6d328141fe264b8900 /sim/common | |
parent | ca61710bdee70cbecf97641c55611e8c8586a418 (diff) | |
download | gdb-d32658fe26d42d54332a7bd3734634d357dafd4e.zip gdb-d32658fe26d42d54332a7bd3734634d357dafd4e.tar.gz gdb-d32658fe26d42d54332a7bd3734634d357dafd4e.tar.bz2 |
Drop leading `_' from macros.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/sim-types.h | 18 |
2 files changed, 18 insertions, 5 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 4109742..767ee0b 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 24 19:57:59 1998 Andrew Cagney <cagney@b1.cygnus.com> + + * sim-config.h: Discard leading _ from macros. + * sim-types.h: Ditto. + Wed Apr 22 14:14:19 1998 Michael Meissner <meissner@cygnus.com> * Make-common.in (CSEARCH): Add -I to intl directories. diff --git a/sim/common/sim-types.h b/sim/common/sim-types.h index 3b6d6ad..5a86d25 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 |