mirror of
https://github.com/corda/corda.git
synced 2025-06-17 22:58:19 +00:00
remove redundant Compiler::initLocal footprint parameter
This commit is contained in:
committed by
Joshua Warner
parent
b6a3ed763c
commit
9273d5ca39
@ -2490,9 +2490,10 @@ class MyCompiler: public Compiler {
|
||||
v->home = frameIndex(&c, index);
|
||||
}
|
||||
|
||||
virtual void initLocal(unsigned footprint, unsigned index, ir::Type type)
|
||||
virtual void initLocal(unsigned index, ir::Type type)
|
||||
{
|
||||
assert(&c, footprint == typeFootprint(&c, type));
|
||||
unsigned footprint = typeFootprint(&c, type);
|
||||
|
||||
assert(&c, index + footprint <= c.localFootprint);
|
||||
|
||||
Value* v = value(&c, type);
|
||||
|
Reference in New Issue
Block a user