mirror of
https://github.com/ctm/syn68k.git
synced 2025-02-19 19:30:59 +00:00
Fixed host_cpu_class-based detection bug.
This commit is contained in:
parent
c2604c275a
commit
7c09cb5fb8
@ -41,7 +41,7 @@
|
||||
* should work even if you leave it undefined though. If you have problems
|
||||
* with divide, try undef'ing this to use the slower but safer version.
|
||||
*/
|
||||
#if @host_cpu_class@ == i386 /* ||defined(mc68000) || defined(i386) || defined(__alpha) || defined (powerpc) || defined (__ppc__) */
|
||||
#if defined(mc68000) || defined(i386) || defined(__alpha) || defined (powerpc) || defined (__ppc__) || defined(__x86_64)
|
||||
# define M68K_DIVISION_BEHAVIOR
|
||||
#endif
|
||||
|
||||
@ -59,7 +59,7 @@
|
||||
/* #define this if support exists for generating native code in some
|
||||
* situations.
|
||||
*/
|
||||
#if defined (USE_DIRECT_DISPATCH) && @host_cpu_class@ == i386 && !defined (NONNATIVE)
|
||||
#if defined (USE_DIRECT_DISPATCH) && defined(i386) && !defined (NONNATIVE)
|
||||
# define GENERATE_NATIVE_CODE
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user