Remove sp_context_t::rval.

This commit is contained in:
David Anderson 2015-02-24 21:34:30 -08:00
parent 3a0310e832
commit 11ea385169
2 changed files with 0 additions and 3 deletions

View File

@ -72,7 +72,6 @@ class PluginContext;
typedef struct sp_context_s
{
cell_t rval; /**< Return value from InvokeFunction() */
sp_plugin_t *plugin;
} sp_context_t;

View File

@ -1206,8 +1206,6 @@ Compiler::emitOp(OPCODE op)
case OP_HALT:
__ align(16);
__ movl(tmp, intptr_t(rt_->GetBaseContext()->GetCtx()));
__ movl(Operand(tmp, offsetof(sp_context_t, rval)), pri);
__ movl(pri, readCell());
__ jmp(&extern_error_);
break;