Examples of memref()


Examples of org.renjin.gcc.translate.expr.ImIndirectExpr.memref()

    // EXPERIMENT:
    // Allow implicit referencing of pointers to pass arguments by value
    if(expr instanceof ImIndirectExpr) {
      ImIndirectExpr ptr = (ImIndirectExpr) expr;
      return context.declareTemp(targetType.asJimple(),
          ptr.memref().translateToPrimitive(context, targetType));
    }

    // TODO: casting
    return expr.translateToPrimitive(context, targetType);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.