Remove an extra POP1 operand that was pushed after STEPCALL. This operand is no longer needed by the new implementation of the stepper.

This commit is contained in:
Juan Jose Garcia Ripoll 2009-07-28 12:20:26 +02:00
parent 45487a621f
commit c90431dbdb

View file

@ -912,7 +912,6 @@ c_call(cl_env_ptr env, cl_object args, int flags) {
* calls: OP_STEPFCALL. */
asm_function(env, name, (flags & FLAG_GLOBAL) | FLAG_REG0);
asm_op2(env, OP_STEPCALL, nargs);
asm_op(env, OP_POP1);
flags = FLAG_VALUES;
} else if (SYMBOLP(name) &&
((flags & FLAG_GLOBAL) || Null(c_tag_ref(env, name, @':function'))))