Index: runtime/vm/instructions_mips.h |
diff --git a/runtime/vm/instructions_mips.h b/runtime/vm/instructions_mips.h |
index d3e784d66301d51f07a75d4852b09e2372a9501f..fb2e22ba673aaea9f3510b67c1b844bcec83eb37 100644 |
--- a/runtime/vm/instructions_mips.h |
+++ b/runtime/vm/instructions_mips.h |
@@ -57,7 +57,9 @@ class CallPattern : public ValueObject { |
RawCode* TargetCode() const; |
void SetTargetCode(const Code& target) const; |
- static const int kDeoptCallLengthInBytes = 4 * Instr::kInstrSize; |
+ static const int kDeoptCallLengthInInstructions = 4; |
+ static const int kDeoptCallLengthInBytes = |
+ kDeoptCallLengthInInstructions * Instr::kInstrSize; |
static void InsertDeoptCallAt(uword pc, uword target_address); |