回档之后的重写。部分问题修复。添加了什么我也忘了

This commit is contained in:
2026-02-01 15:52:28 +08:00
parent 61bffdc743
commit aea716ced2
50 changed files with 3676 additions and 2997 deletions

14
src/IR/ir_test_main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include <IR/IRInterpreter.hpp>
#include <IR/IR.hpp>
int main()
{
using namespace Fig;
IR::VirtualMachine vm;
using namespace IR;
IR::Inst fib_ir[] = {
};
}