mirror of
https://github.com/corda/corda.git
synced 2025-06-18 07:08:15 +00:00
remove redundant Compiler::stackCall resultSize parameter
This commit is contained in:
committed by
Joshua Warner
parent
1d466a800e
commit
8b1739dc0f
@ -2497,13 +2497,19 @@ class MyCompiler: public Compiler {
|
||||
virtual Operand* stackCall(Operand* address,
|
||||
unsigned flags,
|
||||
TraceHandler* traceHandler,
|
||||
unsigned resultSize,
|
||||
ir::Type resultType,
|
||||
unsigned argumentFootprint)
|
||||
{
|
||||
Value* result = value(&c, resultType);
|
||||
appendCall(&c, static_cast<Value*>(address), flags, traceHandler, result,
|
||||
resultSize, c.stack, 0, argumentFootprint);
|
||||
appendCall(&c,
|
||||
static_cast<Value*>(address),
|
||||
flags,
|
||||
traceHandler,
|
||||
result,
|
||||
resultType.size(),
|
||||
c.stack,
|
||||
0,
|
||||
argumentFootprint);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user