I accidentally left debug stuff (like abs paths) in! Whoops!

This commit is contained in:
Zachary Pierson
2017-04-02 18:46:31 -05:00
parent c9c82da1f3
commit 642256f9ba
2 changed files with 4 additions and 8 deletions
-4
View File
@@ -1396,7 +1396,6 @@ void ir_print_proc(irFileBuffer *f, irModule *m, irProcedure *proc) {
if(is_main_proc)
for(int i=0;i<proc->module->min_dep_map.entries.count;i++) {
Entity *value = proc->module->min_dep_map.entries.e[i].value;
//printf("using: %.*s\n", LIT(proc->module->min_dep_map.entries.e[i].value->token.string));
if(value == NULL) continue;
if(str_eq(str_lit("args"), value->token.string)) {
uses_args = true;
@@ -1404,9 +1403,6 @@ void ir_print_proc(irFileBuffer *f, irModule *m, irProcedure *proc) {
}
}
//bool uses_args = map_entity_get(&proc->module->min_dep_map, hash_pointer(entity_of_ident(proc->module->info, ast_ident(&fake_file, make_token_ident(str_lit("args")))))) == NULL;
//printf("uses_args: %d", (int)uses_args);
// TODO(zangent): THIS IS AN UGLY HACK
// I _SERIOUSLY_ need to change this system, because this is just disgraceful.