Index: src/compiler/linkage.h |
diff --git a/src/compiler/linkage.h b/src/compiler/linkage.h |
index 623c9109d96b93b271c61daf5d811b2d694933cf..f5507a0594ea56fdfe2c3dd37300f4857e234cbb 100644 |
--- a/src/compiler/linkage.h |
+++ b/src/compiler/linkage.h |
@@ -330,9 +330,11 @@ class Linkage : public ZoneObject { |
// Special parameter indices used to pass fixed register data through |
// interpreter dispatches. |
- static const int kInterpreterBytecodeOffsetParameter = 0; |
- static const int kInterpreterBytecodeArrayParameter = 1; |
- static const int kInterpreterDispatchTableParameter = 2; |
+ static const int kInterpreterAccumulatorParameter = 0; |
+ static const int kInterpreterRegisterFileParameter = 1; |
+ static const int kInterpreterBytecodeOffsetParameter = 2; |
+ static const int kInterpreterBytecodeArrayParameter = 3; |
+ static const int kInterpreterDispatchTableParameter = 4; |
private: |
CallDescriptor* const incoming_; |