From 5c35ba66c5ade4713bbd9c005e66889f6d7db293 Mon Sep 17 00:00:00 2001 From: James Lyon Date: Wed, 24 Apr 2013 02:19:15 +0100 Subject: 64-bit tests now pass (well, nearly). tcctest1-3 fail, but this appears to be due to bugs in GCC rather than TCC (from manual inspection of the output). --- tcctok.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tcctok.h') diff --git a/tcctok.h b/tcctok.h index f754af5..fde13dd 100644 --- a/tcctok.h +++ b/tcctok.h @@ -125,7 +125,11 @@ DEF(TOK_builtin_constant_p, "__builtin_constant_p") DEF(TOK_builtin_frame_address, "__builtin_frame_address") #ifdef TCC_TARGET_X86_64 +#ifdef TCC_TARGET_PE + DEF(TOK_builtin_va_start, "__builtin_va_start") +#else DEF(TOK_builtin_va_arg_types, "__builtin_va_arg_types") +#endif #endif DEF(TOK_REGPARM1, "regparm") DEF(TOK_REGPARM2, "__regparm__") -- cgit v1.3.1