diff options
Diffstat (limited to 'deps/v8/src/runtime.h')
-rw-r--r-- | deps/v8/src/runtime.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/deps/v8/src/runtime.h b/deps/v8/src/runtime.h index fc0a47279c..7305256de7 100644 --- a/deps/v8/src/runtime.h +++ b/deps/v8/src/runtime.h @@ -89,7 +89,6 @@ namespace internal { F(NotifyDeoptimized, 1, 1) \ F(NotifyOSR, 0, 1) \ F(DeoptimizeFunction, 1, 1) \ - F(ClearFunctionTypeFeedback, 1, 1) \ F(RunningInSimulator, 0, 1) \ F(OptimizeFunctionOnNextCall, -1, 1) \ F(GetOptimizationStatus, 1, 1) \ @@ -364,11 +363,9 @@ namespace internal { F(IS_VAR, 1, 1) \ \ /* expose boolean functions from objects-inl.h */ \ - F(HasFastSmiElements, 1, 1) \ - F(HasFastSmiOrObjectElements, 1, 1) \ - F(HasFastObjectElements, 1, 1) \ + F(HasFastSmiOnlyElements, 1, 1) \ + F(HasFastElements, 1, 1) \ F(HasFastDoubleElements, 1, 1) \ - F(HasFastHoleyElements, 1, 1) \ F(HasDictionaryElements, 1, 1) \ F(HasExternalPixelElements, 1, 1) \ F(HasExternalArrayElements, 1, 1) \ |