Package erjang.beam.repr.Operands

Examples of erjang.beam.repr.Operands.FReg


        }
        return new AllocList(list);
      }
      case FLOATREG_TAG2: {
        int nr = readSmallIntValue(in.read1());
        return new FReg(nr);
      }
      case LITERAL_TAG2: {
        int nr = readSmallIntValue(in.read1());
        return new TableLiteral(literal(nr));
      }
View Full Code Here

TOP

Related Classes of erjang.beam.repr.Operands.FReg

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.