2
0
Эх сурвалжийг харах

Remove debug printing text

gingerBill 6 жил өмнө
parent
commit
aac643f476
2 өөрчлөгдсөн 1 нэмэгдсэн , 8 устгасан
  1. 1 1
      build.bat
  2. 0 7
      src/checker.cpp

+ 1 - 1
build.bat

@@ -42,7 +42,7 @@ del *.ilk > NUL 2> NUL
 
 cl %compiler_settings% "src\main.cpp" ^
 	/link %linker_settings% -OUT:%exe_name% ^
-	&& odin run examples/demo/demo.odin -debug -keep-temp-files
+	&& odin run examples/demo/demo.odin
 
 del *.obj > NUL 2> NUL
 

+ 0 - 7
src/checker.cpp

@@ -3550,13 +3550,6 @@ void check_parsed_files(Checker *c) {
 
 	TIME_SECTION("generate minimum dependency set");
 	generate_minimum_dependency_set(c, c->info.entry_point);
-	for_array(i, c->info.minimum_dependency_set.entries) {
-		Entity *e = c->info.minimum_dependency_set.entries[i].ptr;
-		if (is_type_bit_set(e->type)) {
-			gb_printf("%.*s\n", LIT(e->token.string));
-		}
-	}
-
 
 	TIME_SECTION("calculate global init order");
 	// Calculate initialization order of global variables