Reviewers: Benedikt Meurer,

Message:
Committed patchset #1 (id:1) manually as 24887 (tree was closed).

Description:
Handle noi18n in deopt.

[email protected]
BUG=

Committed: https://code.google.com/p/v8/source/detail?r=24887

Please review this at https://codereview.chromium.org/670023003/

Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+3, -1 lines):
  M src/compiler/linkage.cc


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;


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to