diff options
| author | Frederic Feret <tommy.planet@free.fr> | 2009-08-27 09:53:50 +0200 |
|---|---|---|
| committer | grischka <grischka> | 2009-11-13 18:08:59 +0100 |
| commit | 526c4645048fa469a2941c86a09f4f851a96eb91 (patch) | |
| tree | 265c37c212c2083a53f92b89b31b2e2a26f1fdf4 /libtcc.c | |
| parent | 0d768b97130ef2180725c4e585bb482ed0dea105 (diff) | |
| download | tinycc-526c4645048fa469a2941c86a09f4f851a96eb91.tar.gz tinycc-526c4645048fa469a2941c86a09f4f851a96eb91.tar.bz2 | |
first support of x86_64 assembly
Diffstat (limited to 'libtcc.c')
| -rw-r--r-- | libtcc.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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) |
