mirror of
https://github.com/open-goal/jak-project
synced 2026-07-11 23:30:16 -04:00
[Decompiler] WIP: Stack Spills (#382)
* set up types * cleaned up type analysis and got things working through atomic ops * expression working, need types * improved types and names * getting close * finish up dma-disasm * fix
This commit is contained in:
@@ -156,7 +156,9 @@ void TextDb::inherit_info(const Object& parent, const Object& child) {
|
||||
while (!children.empty()) {
|
||||
auto top = children.back();
|
||||
children.pop_back();
|
||||
map[top->heap_obj] = parent_kv->second;
|
||||
if (map.find(top->heap_obj) == map.end()) {
|
||||
map[top->heap_obj] = parent_kv->second;
|
||||
}
|
||||
if (top->as_pair()->car.is_pair()) {
|
||||
children.push_back(&top->as_pair()->car);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user