From: Wolfgang Bumiller Date: Wed, 4 Jul 2012 11:31:10 +0000 (+0200) Subject: Enabling the print builtin nodes, soon to be used to test CALL generation X-Git-Tag: 0.1-rc1~455 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2c1f08a209a801011f7c4b93a03d1618892b92af;p=xonotic%2Fgmqcc.git Enabling the print builtin nodes, soon to be used to test CALL generation --- diff --git a/test/ast-test.c b/test/ast-test.c index 026dbf3..44a9c0d 100644 --- a/test/ast-test.c +++ b/test/ast-test.c @@ -31,11 +31,9 @@ int main() /* opts_debug = true; */ -#if 0 - BUILTIN(print, TYPE_VOID, -1); - PARAM(TYPE_STRING, text); - ENDBUILTIN(); -#endif +BUILTIN(print, TYPE_VOID, -1); +PARAM(TYPE_STRING, text); +ENDBUILTIN(); TESTINIT(); VAR(TYPE_FLOAT, f0);