use ir::Type in Compiler::initLocal

This commit is contained in:
Joshua Warner
2014-04-30 21:35:08 -06:00
committed by Joshua Warner
parent 4bfb359cdd
commit d8914a9646
4 changed files with 25 additions and 15 deletions

View File

@ -108,7 +108,7 @@ class Compiler {
virtual void return_(ir::Type type, Operand* value) = 0;
virtual void return_() = 0;
virtual void initLocal(unsigned size, unsigned index, OperandType type) = 0;
virtual void initLocal(unsigned size, unsigned index, ir::Type type) = 0;
virtual void initLocalsFromLogicalIp(unsigned logicalIp) = 0;
virtual void storeLocal(unsigned footprint, Operand* src,
unsigned index) = 0;