Index: src/mips/stub-cache-mips.cc |
diff --git a/src/mips/stub-cache-mips.cc b/src/mips/stub-cache-mips.cc |
index dc2a35736c6678d227faaf838bef19bc55f3af2f..e2e69c8f52bfa29df06422b31915f0e838f73ad2 100644 |
--- a/src/mips/stub-cache-mips.cc |
+++ b/src/mips/stub-cache-mips.cc |
@@ -1176,9 +1176,8 @@ void StubCompiler::GenerateLoadConstant(Handle<JSObject> object, |
__ JumpIfSmi(receiver, miss, scratch1); |
// Check that the maps haven't changed. |
- Register reg = |
- CheckPrototypes(object, receiver, holder, |
- scratch1, scratch2, scratch3, name, miss); |
+ CheckPrototypes(object, receiver, holder, |
+ scratch1, scratch2, scratch3, name, miss); |
// Return the constant value. |
__ LoadHeapObject(v0, value); |
@@ -4273,7 +4272,6 @@ void KeyedStoreStubCompiler::GenerateStoreFastElement( |
Register elements_reg = a3; |
Register length_reg = t1; |
Register scratch2 = t2; |
- Register scratch3 = t3; |
// This stub is meant to be tail-jumped to, the receiver must already |
// have been verified by the caller to not be a smi. |