jak-project/decompiler/analysis/find_defstates.h
water111 97ab6a4e12
add support for non virtual states (#764)
* add support for non virtual states

* typecheck go

* start on virtual states

* more support for virtual states

* offline passes

* fix tests

* use behavior shortcut instead of lambda

* final cleanup of virtual go

* unused var warnings and fix inconsistent enum decompile order on win vs linux

* fix thread safety bug with goal symbol table and vif1 interrupt handler

* fix type mistake
2021-08-17 20:54:03 -04:00

8 lines
176 B
C++

#pragma once
#include "decompiler/util/DecompilerTypeSystem.h"
#include "decompiler/Function/Function.h"
namespace decompiler {
void run_defstate(Function& top_level_func);
}