mirror of
https://github.com/corda/corda.git
synced 2025-06-17 22:58:19 +00:00
pass CallEvent arguments in Slice as well
This commit is contained in:
@ -2497,7 +2497,8 @@ class MyCompiler: public Compiler {
|
||||
resultType.size(),
|
||||
argumentStack,
|
||||
index,
|
||||
0);
|
||||
0,
|
||||
util::Slice<ir::Value*>(0, 0));
|
||||
|
||||
return result;
|
||||
}
|
||||
@ -2506,7 +2507,8 @@ class MyCompiler: public Compiler {
|
||||
unsigned flags,
|
||||
TraceHandler* traceHandler,
|
||||
ir::Type resultType,
|
||||
unsigned argumentFootprint)
|
||||
unsigned argumentFootprint,
|
||||
Slice<ir::Value*> arguments)
|
||||
{
|
||||
Value* result = value(&c, resultType);
|
||||
appendCall(&c,
|
||||
@ -2517,7 +2519,8 @@ class MyCompiler: public Compiler {
|
||||
resultType.size(),
|
||||
c.stack,
|
||||
0,
|
||||
argumentFootprint);
|
||||
argumentFootprint,
|
||||
arguments);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user