mirror of
https://github.com/corda/corda.git
synced 2025-01-23 04:48:09 +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) {
|
if (DebugIntrinsics) {
|
||||||
fprintf(stderr, "Using binary intrinsic %i.\n", op);
|
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));
|
int resSize = resultSize(t, methodReturnCode(t, target));
|
||||||
Compiler::Operand* param;
|
Compiler::Operand* param;
|
||||||
if (opSize == 4) {
|
if (opSize == 4) {
|
||||||
|
Loading…
Reference in New Issue
Block a user