public string visit(FPRegister n)
 {
     throw new NotImplementedException();
 }
Exemple #2
0
 public override string visit(FPRegister n)
 {
     if (n.Position < 16)
         return "%xmm" + n.Position;
     else
         return null;
 }
 public abstract string visit(FPRegister n);
 public virtual string visit(FPRegister n)
 {
     throw new NotImplementedException("Register is not implemented yet");
     // Do nothing; leave the implementation to the main class
 }