Index: src/mips/register-allocator-mips.h |
diff --git a/src/mips/register-allocator-mips.h b/src/mips/register-allocator-mips.h |
index e056fb8074e02da5bb1bf34864f47559bb5088c8..c4489231783db9184471ddc608d9177fe00b83ef 100644 |
--- a/src/mips/register-allocator-mips.h |
+++ b/src/mips/register-allocator-mips.h |
@@ -35,8 +35,9 @@ namespace internal { |
class RegisterAllocatorConstants : public AllStatic { |
public: |
- static const int kNumRegisters = assembler::mips::kNumRegisters; |
- static const int kInvalidRegister = assembler::mips::kInvalidRegister; |
+ // No registers are currently managed by the register allocator on MIPS. |
+ static const int kNumRegisters = 0; |
+ static const int kInvalidRegister = -1; |
}; |