Index: src/compiler/operator-properties-inl.h |
diff --git a/src/compiler/operator-properties-inl.h b/src/compiler/operator-properties-inl.h |
index a65068d7fff97934a9ddf1ea26595b9e38ff0566..9d8cc0424e05f9be54c4f5654490b66e9a9fba06 100644 |
--- a/src/compiler/operator-properties-inl.h |
+++ b/src/compiler/operator-properties-inl.h |
@@ -47,6 +47,9 @@ inline bool OperatorProperties::HasFrameStateInput(Operator* op) { |
switch (function) { |
case Runtime::kDebugBreak: |
case Runtime::kDeoptimizeFunction: |
+ case Runtime::kSetScriptBreakPoint: |
+ case Runtime::kDebugGetLoadedScripts: |
+ case Runtime::kStackGuard: |
return true; |
default: |
return false; |
@@ -178,6 +181,9 @@ inline bool OperatorProperties::CanLazilyDeoptimize(Operator* op) { |
switch (function) { |
case Runtime::kDebugBreak: |
case Runtime::kDeoptimizeFunction: |
+ case Runtime::kSetScriptBreakPoint: |
+ case Runtime::kDebugGetLoadedScripts: |
+ case Runtime::kStackGuard: |
return true; |
default: |
return false; |