From 46e2dd7c3284462a954ce1eaf61d9af29b5a9159 Mon Sep 17 00:00:00 2001 From: Joe Soroka Date: Tue, 12 Apr 2011 00:11:47 -0700 Subject: [PATCH] tcctok.h: fix ifdef target/host confusion --- tcctok.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcctok.h b/tcctok.h index 6e7ca1f..f754af5 100644 --- a/tcctok.h +++ b/tcctok.h @@ -240,7 +240,7 @@ DEF(TOK_strlen, "strlen") DEF(TOK_strcpy, "strcpy") #endif -#if defined __i386__ || defined __x86_64__ +#if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 DEF(TOK_alloca, "alloca") #endif