From 8c7d5f45eefe091659592f4f754cd6a7b9db3246 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Wed, 6 Jan 2010 05:25:24 +0000 Subject: [PATCH] * basic-modes.h (MAKEDI): New macro. --- include/cgen/ChangeLog | 4 ++++ include/cgen/basic-modes.h | 3 +++ 2 files changed, 7 insertions(+) diff --git a/include/cgen/ChangeLog b/include/cgen/ChangeLog index b9da0e687..a8d5df9e6 100644 --- a/include/cgen/ChangeLog +++ b/include/cgen/ChangeLog @@ -1,3 +1,7 @@ +2010-01-05 Doug Evans + + * basic-modes.h (MAKEDI): New macro. + 2009-10-23 Doug Evans * basic-modes.h: New file. Moved here from opcodes/cgen-types.h. diff --git a/include/cgen/basic-modes.h b/include/cgen/basic-modes.h index 7583ee458..bd87f3acb 100644 --- a/include/cgen/basic-modes.h +++ b/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 */