first support of x86_64 assembly

This commit is contained in:
Frederic Feret
2009-08-27 09:53:50 +02:00
committed by grischka
parent 0d768b9713
commit 526c464504
8 changed files with 1973 additions and 221 deletions

View File

@ -324,9 +324,15 @@ static inline int toup(int c)
#include "tccgen.c"
#ifdef CONFIG_TCC_ASM
#ifdef TCC_TARGET_I386
#include "i386-asm.c"
#endif
#ifdef TCC_TARGET_X86_64
#include "x86_64-asm.c"
#endif
#include "tccasm.c"
#else
static void asm_instr(void)