Index: src/runtime.h |
diff --git a/src/runtime.h b/src/runtime.h |
index ade7e732c0f71ac22f9b551ebad6c086530f44a9..398cb3bcc24dd1b49102c9940f4bd15129573f3f 100644 |
--- a/src/runtime.h |
+++ b/src/runtime.h |
@@ -109,7 +109,6 @@ namespace internal { |
F(DebugCallbackSupportsStepping, 1, 1) \ |
F(DebugPrepareStepInIfStepping, 1, 1) \ |
F(FlattenString, 1, 1) \ |
- F(MigrateInstance, 1, 1) \ |
\ |
/* Array join support */ \ |
F(PushIfAbsent, 2, 1) \ |
@@ -158,6 +157,7 @@ namespace internal { |
F(NumberOr, 2, 1) \ |
F(NumberAnd, 2, 1) \ |
F(NumberXor, 2, 1) \ |
+ F(NumberNot, 1, 1) \ |
\ |
F(NumberShl, 2, 1) \ |
F(NumberShr, 2, 1) \ |
@@ -534,26 +534,6 @@ namespace internal { |
#define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) |
#endif |
- |
-#ifdef V8_I18N_SUPPORT |
-#define RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F) \ |
- /* i18n support */ \ |
- /* Standalone, helper methods. */ \ |
- F(CanonicalizeLanguageTag, 1, 1) \ |
- F(AvailableLocalesOf, 1, 1) \ |
- F(GetDefaultICULocale, 0, 1) \ |
- F(GetLanguageTagVariants, 1, 1) \ |
- \ |
- /* Date format and parse. */ \ |
- F(CreateDateTimeFormat, 3, 1) \ |
- F(InternalDateFormat, 2, 1) \ |
- F(InternalDateParse, 2, 1) \ |
- |
-#else |
-#define RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F) |
-#endif |
- |
- |
#ifdef DEBUG |
#define RUNTIME_FUNCTION_LIST_DEBUG(F) \ |
/* Testing */ \ |
@@ -571,8 +551,7 @@ namespace internal { |
RUNTIME_FUNCTION_LIST_ALWAYS_1(F) \ |
RUNTIME_FUNCTION_LIST_ALWAYS_2(F) \ |
RUNTIME_FUNCTION_LIST_DEBUG(F) \ |
- RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \ |
- RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F) |
+ RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) |
// ---------------------------------------------------------------------------- |
// INLINE_FUNCTION_LIST defines all inlined functions accessed |