Package org.renjin.compiler.ir.ssa

Examples of org.renjin.compiler.ir.ssa.SsaVariable


  private Temp temp(int index) {
    return new Temp(index-1);
  }

  private SsaVariable var(String name, int version) {
    return new SsaVariable(new EnvironmentVariable(name), version);
  }
View Full Code Here

TOP

Related Classes of org.renjin.compiler.ir.ssa.SsaVariable

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.