vm_x86.c: Add `defined(_M_IX86) || defined(_M_X64)` (fix for VS2019)

This commit is contained in:
kungfooman 2022-01-04 10:25:57 +01:00 committed by zturtleman
parent 6d74896557
commit 29b0cc3a4d
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#endif
#endif
#if defined (__i386__) || defined(__x86_64__)
#if defined (__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64)
static void VM_Destroy_Compiled(vm_t* self);
/*