Skip to content

Commit

Permalink
Argh, VS2015 will not allow inline ASM for x86_64
Browse files Browse the repository at this point in the history
  • Loading branch information
joncampbell123 committed Feb 2, 2019
1 parent a79b652 commit 649d9b8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vs2015/config.h
Expand Up @@ -89,7 +89,12 @@
#define C_FPU 1

/* Define to 1 to use a x86/x64 assembly fpu core */
#define C_FPU_X86 1
/* FIXME: VS2015 x86_64 will not allow inline asm! */
#ifdef _M_AMD64 /* Microsoft C++ amd64 */
//TODO
#else
# define C_FPU_X86 1
#endif

/* Determines if the compilers supports attributes for structures. */
#undef C_HAS_ATTRIBUTE
Expand Down

0 comments on commit 649d9b8

Please sign in to comment.