Index: src/interface-descriptors.h |
diff --git a/src/interface-descriptors.h b/src/interface-descriptors.h |
index d85ca36cad9443459b492a8fa9e7c25e26d11783..2e77930bea307aed01d51b4ffe664c29351a8fdd 100644 |
--- a/src/interface-descriptors.h |
+++ b/src/interface-descriptors.h |
@@ -20,7 +20,7 @@ class PlatformInterfaceDescriptor; |
V(VectorStoreTransition) \ |
V(VectorStoreICTrampoline) \ |
V(VectorStoreIC) \ |
- V(Instanceof) \ |
+ V(InstanceOf) \ |
V(LoadWithVector) \ |
V(FastNewClosure) \ |
V(FastNewContext) \ |
@@ -291,13 +291,13 @@ class VectorStoreTransitionDescriptor : public StoreDescriptor { |
}; |
-class InstanceofDescriptor : public CallInterfaceDescriptor { |
+class InstanceOfDescriptor final : public CallInterfaceDescriptor { |
public: |
- DECLARE_DESCRIPTOR(InstanceofDescriptor, CallInterfaceDescriptor) |
+ DECLARE_DESCRIPTOR(InstanceOfDescriptor, CallInterfaceDescriptor) |
enum ParameterIndices { kLeftIndex, kRightIndex, kParameterCount }; |
- static const Register left(); |
- static const Register right(); |
+ static const Register LeftRegister(); |
+ static const Register RightRegister(); |
}; |