mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
fixed incorrect opSize bug for 64-bit platforms
This commit is contained in:
parent
af4d82ef7e
commit
32167168f8
@ -3630,7 +3630,7 @@ compile(MyThread* t, Frame* initialFrame, unsigned ip,
|
||||
if (DebugIntrinsics) {
|
||||
fprintf(stderr, "Using binary intrinsic %i.\n", op);
|
||||
}
|
||||
int opSize = methodParameterFootprint(t, target) * BytesPerWord;
|
||||
int opSize = methodParameterFootprint(t, target) * 4;
|
||||
int resSize = resultSize(t, methodReturnCode(t, target));
|
||||
Compiler::Operand* param;
|
||||
if (opSize == 4) {
|
||||
|
Loading…
Reference in New Issue
Block a user