diff options
author | Cameron Cawley <ccawley2011@gmail.com> | 2018-05-13 12:34:45 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2018-07-29 15:51:31 +0200 |
commit | 1670c4421f6f2c3a08c21d81eef749ec956af65c (patch) | |
tree | 99fa96a5abb1dfb6cb2751faedf7aaecd8fc9280 /src/common/common_funcs.h | |
parent | Merge pull request #847 from lioncash/ncm (diff) | |
download | yuzu-1670c4421f6f2c3a08c21d81eef749ec956af65c.tar yuzu-1670c4421f6f2c3a08c21d81eef749ec956af65c.tar.gz yuzu-1670c4421f6f2c3a08c21d81eef749ec956af65c.tar.bz2 yuzu-1670c4421f6f2c3a08c21d81eef749ec956af65c.tar.lz yuzu-1670c4421f6f2c3a08c21d81eef749ec956af65c.tar.xz yuzu-1670c4421f6f2c3a08c21d81eef749ec956af65c.tar.zst yuzu-1670c4421f6f2c3a08c21d81eef749ec956af65c.zip |
Diffstat (limited to 'src/common/common_funcs.h')
-rw-r--r-- | src/common/common_funcs.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index 93f1c0044..8b0d34da6 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -6,7 +6,7 @@ #include <string> -#if !defined(ARCHITECTURE_x86_64) && !defined(ARCHITECTURE_ARM) +#if !defined(ARCHITECTURE_x86_64) #include <cstdlib> // for exit #endif #include "common/common_types.h" @@ -32,8 +32,6 @@ #ifdef ARCHITECTURE_x86_64 #define Crash() __asm__ __volatile__("int $3") -#elif defined(ARCHITECTURE_ARM) -#define Crash() __asm__ __volatile__("trap") #else #define Crash() exit(1) #endif |