コード例 #1
0
 public void visit(Lea n)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: X86_64.cs プロジェクト: jverbraeken/Swift-Compiler
 public override void visit(Lea n)
 {
     w("leaq\t" + n.From.accept(this) + ", " + n.To.accept(this));
 }
コード例 #3
0
 public abstract void visit(Lea n);
コード例 #4
0
 public virtual void visit(Lea n)
 {
     // Do nothing; leave the implementation to the main class
 }