Commit ca46eab7 by Richard Henderson Committed by Richard Henderson

Fix libjava failures on i686-linux

	* src/x86/ffi.c (ffi_raw_call): Fill in frame.

From-SVN: r219505
parent b891a9a6
2015-01-12 Richard Henderson <rth@redhat.com>
* src/x86/ffi.c (ffi_raw_call): Fill in frame.
2015-01-12 Richard Henderson <rth@redhat.com>
Merge to upstream commit c82cc159426d8d4402375fa1ae3f045b9cf82e16.
2014-11-21 H.J. Lu <hongjiu.lu@intel.com>
......
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment