Index: src/code-stubs.h |
diff --git a/src/code-stubs.h b/src/code-stubs.h |
index 5542b428718914f0a80cab7d4b794fe4cd857aab..8a02539e069bd7d6ddee1e7a12e36ba01de0f5bf 100644 |
--- a/src/code-stubs.h |
+++ b/src/code-stubs.h |
@@ -1952,6 +1952,12 @@ class CompareICStub : public PlatformCodeStub { |
LeftStateBits::encode(left) | RightStateBits::encode(right) | |
StateBits::encode(state); |
} |
+ // Creates uninitialized compare stub. |
+ CompareICStub(Isolate* isolate, Token::Value op) |
+ : CompareICStub(isolate, op, CompareICState::UNINITIALIZED, |
+ CompareICState::UNINITIALIZED, |
+ CompareICState::UNINITIALIZED) {} |
+ |
CompareICStub(Isolate* isolate, ExtraICState extra_ic_state) |
: PlatformCodeStub(isolate) { |
minor_key_ = extra_ic_state; |