Browse Source

* basic-modes.h (MAKEDI): New macro.

gdb_7_1-branch
Doug Evans 17 years ago
parent
commit
7c5b2b7a25
  1. 4
      include/cgen/ChangeLog
  2. 3
      include/cgen/basic-modes.h

4
include/cgen/ChangeLog

@ -1,3 +1,7 @@
2010-01-05 Doug Evans <dje@sebabeach.org>
* basic-modes.h (MAKEDI): New macro.
2009-10-23 Doug Evans <dje@sebabeach.org>
* basic-modes.h: New file. Moved here from opcodes/cgen-types.h.

3
include/cgen/basic-modes.h

@ -46,4 +46,7 @@ typedef uint64_t UDI;
typedef int INT;
typedef unsigned int UINT;
/* Cover macro to create a 64-bit integer. */
#define MAKEDI(hi, lo) ((((DI) (SI) (hi)) << 32) | ((UDI) (USI) (lo)))
#endif /* CGEN_BASIC_MODES_H */

Loading…
Cancel
Save