x86: Fix thinko in ffi_raw_call

Missed structure initialization for raw path.
Apparently there are no tests for this outside gcc.
This commit is contained in:
Richard Henderson
2015-01-13 07:22:07 -08:00
parent c82cc15942
commit f27c4e4673

View File

@@ -675,6 +675,10 @@ ffi_raw_call(ffi_cif *cif, void (*fn)(void), void *rvalue, ffi_raw *avalue)
if (rsize)
rvalue = frame + 1;
frame->fn = fn;
frame->flags = flags;
frame->rvalue = rvalue;
narg_reg = 0;
switch (flags)
{