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

This commit is contained in:
Doug Evans 2010-01-06 05:25:24 +00:00
parent 7fce58cbda
commit 8c7d5f45ee
2 changed files with 7 additions and 0 deletions

View File

@ -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.

View File

@ -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 */