Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -329,7 +329,7 @@ protected static void processCall(ThreadContext context, Instr instr, Operation
IRubyObject r = (IRubyObject)retrieveOp(call.getReceiver(), context, self, currDynScope, currScope, temp);
IRubyObject o = (IRubyObject)call.getArg1().retrieve(context, self, currScope, currDynScope, temp);
Block preparedBlock = call.prepareBlock(context, self, currScope, currDynScope, temp);
result = call.getCallSite().call(context, self, r, o, preparedBlock);
result = call.getCallSite().callIter(context, self, r, o, preparedBlock);
setResult(temp, currDynScope, call.getResult(), result);
break;
}

0 comments on commit ccd8534

Please sign in to comment.