}
// SSS FIXME: Got a little lazy? We could/should define a special instruction ALIAS_GLOBAL_VAR_Instr probably
// Is this a ruby-internals or a jruby-internals call?
public Operand buildVAlias(Node node, IRScope m) {
VAliasNode valiasNode = (VAliasNode) node;
Operand[] args = new Operand[] { new StringLiteral(valiasNode.getOldName()) };
m.addInstr(new RubyInternalCallInstr(null, MethAddr.GVAR_ALIAS, new StringLiteral(valiasNode.getNewName()), args));
return Nil.NIL;
}