Files
jak-project/decompiler/analysis/expression_build.h
T
water111 2f722e6379 [Decompiler] Expression Building (#211)
* up to ash

* add more expressions

* fix some return variable usage nonsense

* bfloat print working

* basic-type working

* type working, fix decompiler on all files

* clang format
2021-01-24 16:39:15 -05:00

12 lines
338 B
C++

#pragma once
namespace decompiler {
class Form;
class Function;
class FormPool;
class DecompilerTypeSystem;
bool convert_to_expressions(Form* top_level_form,
FormPool& pool,
const Function& f,
const DecompilerTypeSystem& dts);
} // namespace decompiler