Ejemplo n.º 1
0
 public override void Visit(ReturnNode node)
 {
     node.Node.Accept(this);
     this.Add("   pop rax");
     this.Add("   mov rsp, rbp");
     this.Add("   pop rbp");
     this.Add("   ret");
 }
Ejemplo n.º 2
0
 public abstract void Visit(ReturnNode node);