diff options
author | bunnei <bunneidev@gmail.com> | 2015-08-12 00:00:44 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-08-15 18:03:25 -0400 |
commit | bd7e691f78d916ed6ae5396b2d646d9b3a053dd7 (patch) | |
tree | a20367004f684afeca83e795ce66e62115e8e79d /src/common/common_funcs.h | |
parent | cfb354f11f55b940a2f4476f2b42c6813feb3f38 (diff) |
x64: Refactor to remove fake interfaces and general cleanups.
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 6fd2b06b2..948070e62 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_X86_64) +#if defined(__x86_64__) || defined(ARCHITECTURE_X64) #define Crash() __asm__ __volatile__("int $3") #elif defined(_M_ARM) #define Crash() __asm__ __volatile__("trap") |