rename lir::Register to lir::RegisterPair

This commit is contained in:
joshuawarner32@gmail.com
2014-12-04 18:45:57 -07:00
committed by Joshua Warner
parent 10442dc7d6
commit 02d1a83ad9
12 changed files with 560 additions and 560 deletions

View File

@ -149,9 +149,9 @@ class Address : public Operand {
Promise* address;
};
class Register : public Operand {
class RegisterPair : public Operand {
public:
Register(int low, int high = NoRegister) : low(low), high(high)
RegisterPair(int low, int high = NoRegister) : low(low), high(high)
{
}