mirror of
https://github.com/ctm/syn68k.git
synced 2025-02-21 02:29:08 +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
|
* 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.
|
* 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
|
# define M68K_DIVISION_BEHAVIOR
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -59,7 +59,7 @@
|
|||||||
/* #define this if support exists for generating native code in some
|
/* #define this if support exists for generating native code in some
|
||||||
* situations.
|
* 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
|
# define GENERATE_NATIVE_CODE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user