mirror of
https://github.com/corda/corda.git
synced 2025-06-17 22:58:19 +00:00
remove redundant Compiler::storeLocal footprint parameter
This commit is contained in:
committed by
Joshua Warner
parent
cc4525c31c
commit
91c5599fc0
@ -2534,10 +2534,9 @@ class MyCompiler: public Compiler {
|
||||
linkLocals(&c, e->locals(), newLocals);
|
||||
}
|
||||
|
||||
virtual void storeLocal(unsigned footprint, ir::Value* src, unsigned index)
|
||||
virtual void storeLocal(ir::Value* src, unsigned index)
|
||||
{
|
||||
assert(&c, typeFootprint(src->type) == footprint);
|
||||
compiler::storeLocal(&c, footprint, static_cast<Value*>(src), index, true);
|
||||
compiler::storeLocal(&c, typeFootprint(&c, src->type), static_cast<Value*>(src), index, true);
|
||||
}
|
||||
|
||||
virtual ir::Value* loadLocal(ir::Type type, unsigned index)
|
||||
|
Reference in New Issue
Block a user