Demaybe operator ?

This commit is contained in:
Ginger Bill
2016-10-07 09:41:38 +01:00
parent f40482aa29
commit c5d20d2eef
7 changed files with 107 additions and 70 deletions

View File

@@ -121,12 +121,9 @@ void ssa_gen_tree(ssaGen *s) {
continue;
}
if (entry_point != NULL) {
auto found = map_get(&min_dep_map, hash_pointer(e));
if (found == NULL) {
// NOTE(bill): Nothing depends upon it so doesn't need to be built
continue;
}
if (map_get(&min_dep_map, hash_pointer(e)) == NULL) {
// NOTE(bill): Nothing depends upon it so doesn't need to be built
continue;
}
if (!scope->is_global && !scope->is_init) {