Index: src/compiler/linkage.cc |
diff --git a/src/compiler/linkage.cc b/src/compiler/linkage.cc |
index 3f4d53b41cdee00e2cc962e8492ce51011dff05a..4239f9fef92493dfe70a121311973b05bfa94206 100644 |
--- a/src/compiler/linkage.cc |
+++ b/src/compiler/linkage.cc |
@@ -155,7 +155,6 @@ bool Linkage::NeedsFrameState(Runtime::FunctionId function) { |
case Runtime::kFunctionBindArguments: |
case Runtime::kGetDefaultReceiver: |
case Runtime::kGetFrameCount: |
- case Runtime::kGetImplFromInitializedIntlObject: |
case Runtime::kGetOwnProperty: |
case Runtime::kGetOwnPropertyNames: |
case Runtime::kGetPropertyNamesFast: |
@@ -204,6 +203,9 @@ bool Linkage::NeedsFrameState(Runtime::FunctionId function) { |
case Runtime::kThrow: |
case Runtime::kTypedArraySetFastCases: |
case Runtime::kTypedArrayInitializeFromArrayLike: |
+#ifdef V8_I18N_SUPPORT |
+ case Runtime::kGetImplFromInitializedIntlObject: |
+#endif |
return true; |
default: |
return false; |