Skip to content

Commit

Permalink
wip fiero mapgen
Browse files Browse the repository at this point in the history
  • Loading branch information
G3Kappa committed May 8, 2024
1 parent 08f52fb commit 8664e49
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Ergo/Lang/Compiler/ExecutionGraph.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Ergo.Interpreter;
using Ergo.Runtime.BuiltIns;
using System.Diagnostics;

namespace Ergo.Lang.Compiler;

Expand All @@ -23,7 +22,7 @@ private ErgoVM.Op CompileAndCache()
if (Root is not SequenceNode)
Root.IsContinuationDet = true;
var compiledRoot = Root.Compile();
Debug.WriteLine(Root.Explain(false));
//Debug.WriteLine(Root.Explain(false));
// NOTE: PrepareDelegate pre-JITs 'op' so that we don't incur JIT overhead at runtime.
RuntimeHelpers.PrepareDelegate(compiledRoot);
Compiled = compiledRoot;
Expand Down

0 comments on commit 8664e49

Please sign in to comment.