use ir::Type in Compiler::pop

This commit is contained in:
Joshua Warner
2014-04-30 20:28:33 -06:00
committed by Joshua Warner
parent 13342d28be
commit 4bfb359cdd
3 changed files with 34 additions and 28 deletions

View File

@ -84,7 +84,7 @@ class Compiler {
virtual void push(ir::Type type, Operand* value) = 0;
virtual void save(ir::Type type, Operand* value) = 0;
virtual Operand* pop(unsigned footprint) = 0;
virtual Operand* pop(ir::Type type) = 0;
virtual void pushed() = 0;
virtual void popped(unsigned footprint) = 0;
virtual unsigned topOfStack() = 0;