For a transitional period (until we've managed to replace all
underscore prefixed instances), allow both names to co-exist.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
/* Anonymous unions include all permissible names (e.g., al/ah/ax/eax/rax). */
#define __DECL_REG_LOHI(which) union { \
uint64_t r ## which ## x; \
- uint32_t _e ## which ## x; \
+ uint32_t e ## which ## x, _e ## which ## x; \
uint16_t which ## x; \
struct { \
uint8_t which ## l; \
}
#define __DECL_REG_LO8(name) union { \
uint64_t r ## name; \
- uint32_t _e ## name; \
+ uint32_t e ## name, _e ## name; \
uint16_t name; \
uint8_t name ## l; \
}
#define __DECL_REG_LO16(name) union { \
uint64_t r ## name; \
- uint32_t _e ## name; \
+ uint32_t e ## name, _e ## name; \
uint16_t name; \
}
#define __DECL_REG_HI(num) union { \