Drop leading `_' from macros.
authorAndrew Cagney <cagney@redhat.com>
Fri, 24 Apr 1998 09:59:22 +0000 (09:59 +0000)
committerAndrew Cagney <cagney@redhat.com>
Fri, 24 Apr 1998 09:59:22 +0000 (09:59 +0000)
sim/common/ChangeLog
sim/common/sim-types.h

index 4109742605aa10858078e53ec8d741dd979e95f9..767ee0baa5402a581f1308e558c35c7a75e565d2 100644 (file)
@@ -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.
index 3b6d6ad2852aa1df0c66bb97969d845943f2aaac..5a86d25198091b52ea5613e4e6807b4b620ec76b 100644 (file)
 
 /* Basic type sizes for the PowerPC */
 
-#ifndef _SIM_TYPES_H_
-#define _SIM_TYPES_H_
-
-
+#ifndef SIM_TYPES_H
+#define SIM_TYPES_H
 
 
 /* INTEGER QUANTITIES:
                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