summary refs log tree commit diff
path: root/lisc/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/main.c')
-rw-r--r--lisc/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisc/main.c b/lisc/main.c
index 10de4d6..0689ae8 100644
--- a/lisc/main.c
+++ b/lisc/main.c
@@ -30,6 +30,7 @@ dumpts(Bits *b, Tmp *tmp, FILE *f)
 static void
 data(Dat *d)
 {
+#if 0
 	if (dbg)
 		return;
 	if (d->type == DEnd) {
@@ -37,6 +38,7 @@ data(Dat *d)
 		freeall();
 	}
 	emitdat(d, stdout);
+#endif
 }
 
 static void
@@ -59,7 +61,6 @@ func(Fn *fn)
 	filluse(fn);
 	copy(fn);
 	filluse(fn);
-#endif
 	isel(fn);
 	filllive(fn);
 	fillcost(fn);
@@ -77,6 +78,7 @@ func(Fn *fn)
 		emitfn(fn, stdout);
 		printf("/* end function %s */\n\n", fn->name);
 	} else
+#endif
 		fprintf(stderr, "\n");
 	freeall();
 }