From 526c4645048fa469a2941c86a09f4f851a96eb91 Mon Sep 17 00:00:00 2001 From: Frederic Feret Date: Thu, 27 Aug 2009 09:53:50 +0200 Subject: first support of x86_64 assembly --- libtcc.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libtcc.c') diff --git a/libtcc.c b/libtcc.c index 513de90..e2027da 100644 --- a/libtcc.c +++ b/libtcc.c @@ -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) -- cgit v1.3.1