remove redundant Compiler::initLocal footprint parameter

This commit is contained in:
Joshua Warner
2014-05-03 22:16:22 -06:00
committed by Joshua Warner
parent b6a3ed763c
commit 9273d5ca39
3 changed files with 11 additions and 11 deletions

View File

@ -93,10 +93,9 @@ class Compiler {
virtual void return_(ir::Value* value) = 0;
virtual void return_() = 0;
virtual void initLocal(unsigned size, unsigned index, ir::Type type) = 0;
virtual void initLocal(unsigned index, ir::Type type) = 0;
virtual void initLocalsFromLogicalIp(unsigned logicalIp) = 0;
virtual void storeLocal(ir::Value* src, unsigned index)
= 0;
virtual void storeLocal(ir::Value* src, unsigned index) = 0;
virtual ir::Value* loadLocal(ir::Type type, unsigned index) = 0;
virtual void saveLocals() = 0;