change Compiler::register_ to Compiler::threadRegister, since it was only used as such

This commit is contained in:
Joshua Warner
2014-04-30 22:27:19 -06:00
committed by Joshua Warner
parent 2d444830d0
commit 8af9bb8297
6 changed files with 107 additions and 96 deletions

View File

@ -72,7 +72,7 @@ class Compiler {
Operand* index = 0,
unsigned scale = 1) = 0;
virtual Operand* register_(int number) = 0;
virtual Operand* threadRegister() = 0;
virtual void push(ir::Type type, Operand* value) = 0;
virtual void save(ir::Type type, Operand* value) = 0;