diff options
| author | 2015-08-15 18:26:12 -0400 | |
|---|---|---|
| committer | 2015-08-15 18:26:12 -0400 | |
| commit | d852c4ecc71f800b552978362947a5eb5a524694 (patch) | |
| tree | 9ea9a86da4027126914e69b12c24d2849fdb2c2d /src/common/common_funcs.h | |
| parent | Merge pull request #1027 from lioncash/debugger (diff) | |
| parent | Shader: Use a POD struct for registers. (diff) | |
| download | yuzu-d852c4ecc71f800b552978362947a5eb5a524694.tar.gz yuzu-d852c4ecc71f800b552978362947a5eb5a524694.tar.xz yuzu-d852c4ecc71f800b552978362947a5eb5a524694.zip | |
Merge pull request #1002 from bunnei/shader-jit
Vertex Shader JIT for X86-64
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..88e452a16 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | 35 | ||
| 36 | #ifndef _MSC_VER | 36 | #ifndef _MSC_VER |
| 37 | 37 | ||
| 38 | #if defined(__x86_64__) || defined(_M_X64) | 38 | #ifdef ARCHITECTURE_x86_64 |
| 39 | #define Crash() __asm__ __volatile__("int $3") | 39 | #define Crash() __asm__ __volatile__("int $3") |
| 40 | #elif defined(_M_ARM) | 40 | #elif defined(_M_ARM) |
| 41 | #define Crash() __asm__ __volatile__("trap") | 41 | #define Crash() __asm__ __volatile__("trap") |