Nicolas Winkler 5 лет назад
Родитель
Сommit
73d63f7fe9
2 измененных файлов с 19 добавлено и 0 удалено
  1. 2 0
      libmandel/include/IterationIR.h
  2. 17 0
      libmandel/src/IterationIR.cpp

+ 2 - 0
libmandel/include/IterationIR.h

@@ -33,6 +33,8 @@ namespace mnd
             Node* newB;
         };
     }
+
+    ir::Formula expand(const mnd::IterationFormula& fmla);
 }
 
 

+ 17 - 0
libmandel/src/IterationIR.cpp

@@ -3,3 +3,20 @@
 
 
 using namespace mnd;
+
+
+namespace mnd
+{
+
+    struct ConvertVisitor
+    {
+        util::Arena<ir::Node>& arena;
+
+    };
+
+    ir::Formula expand(const mnd::IterationFormula& fmla)
+    {
+        ir::Formula formula;
+    }
+}
+