]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Enabling the print builtin nodes, soon to be used to test CALL generation
authorWolfgang Bumiller <wolfgang.linux@bumiller.com>
Wed, 4 Jul 2012 11:31:10 +0000 (13:31 +0200)
committerWolfgang Bumiller <wolfgang.linux@bumiller.com>
Wed, 4 Jul 2012 11:31:10 +0000 (13:31 +0200)
test/ast-test.c

index 026dbf369421031bdf751f6ccc16c0631094f96e..44a9c0daf3487448d1e422eac2f4da0385005a81 100644 (file)
@@ -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);