Expand case ranges to build on MSVC

This commit is contained in:
mio
2021-12-30 00:42:13 +01:00
parent dc402d78ec
commit 03f9dd8b61
6 changed files with 54 additions and 14 deletions

View File

@@ -29,9 +29,9 @@
/* #define DEBUG_HELPER */
#ifdef DEBUG_HELPER
#define HELPER_LOG(x...) qemu_log(x)
#define HELPER_LOG(x, ...) qemu_log(x)
#else
#define HELPER_LOG(x...)
#define HELPER_LOG(x, ...)
#endif
#define RET128(F) (env->retxl = F.low, F.high)