mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 16:18:52 +00:00
Remove debug printing text
This commit is contained in:
@@ -42,7 +42,7 @@ del *.ilk > NUL 2> NUL
|
|||||||
|
|
||||||
cl %compiler_settings% "src\main.cpp" ^
|
cl %compiler_settings% "src\main.cpp" ^
|
||||||
/link %linker_settings% -OUT:%exe_name% ^
|
/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
|
del *.obj > NUL 2> NUL
|
||||||
|
|
||||||
|
|||||||
@@ -3550,13 +3550,6 @@ void check_parsed_files(Checker *c) {
|
|||||||
|
|
||||||
TIME_SECTION("generate minimum dependency set");
|
TIME_SECTION("generate minimum dependency set");
|
||||||
generate_minimum_dependency_set(c, c->info.entry_point);
|
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");
|
TIME_SECTION("calculate global init order");
|
||||||
// Calculate initialization order of global variables
|
// Calculate initialization order of global variables
|
||||||
|
|||||||
Reference in New Issue
Block a user