Nicolas Winkler 5 rokov pred
rodič
commit
73d63f7fe9

+ 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;
+    }
+}
+