diff options
author | bunnei <bunneidev@gmail.com> | 2015-07-21 20:08:49 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-08-15 17:33:45 -0400 |
commit | ddbeebb887cff61b087a48738650832bc62c9e83 (patch) | |
tree | 130ff470aa19d7cdbdd2a8183ae4fcb12e061fc8 /src/common/common_funcs.h | |
parent | 4d517922856791decfed475cdd536aedcaa25c30 (diff) |
Common: Ported over boilerplate x86 JIT code from Dolphin/PPSSPP.
Diffstat (limited to 'src/common/common_funcs.h')
-rw-r--r-- | src/common/common_funcs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index 83b47f61e..6fd2b06b2 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -35,7 +35,7 @@ #ifndef _MSC_VER -#if defined(__x86_64__) || defined(_M_X64) +#if defined(__x86_64__) || defined(_M_X86_64) #define Crash() __asm__ __volatile__("int $3") #elif defined(_M_ARM) #define Crash() __asm__ __volatile__("trap") |