Package org.renjin.gcc.translate.var

Examples of org.renjin.gcc.translate.var.PrimitiveHeapVar


  }

  @Override
  public ImExpr addressOf() {
    // in order to provide an address, we'll create a heap variable on the fly
    PrimitiveHeapVar var = new PrimitiveHeapVar(context, type,
            "__constant" + System.identityHashCode(this));
    var.writePrimitiveAssignment(translateToPrimitive(context, type));

    return var.addressOf();
  }
View Full Code Here

TOP

Related Classes of org.renjin.gcc.translate.var.PrimitiveHeapVar

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.