Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Unified Diff: src/contexts.h

Issue 2077533002: [builtins] Introduce proper Float64Exp operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Import tests from Raymond. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/contexts.h
diff --git a/src/contexts.h b/src/contexts.h
index e53bf88674a89a1f1a01eff4a9334093f883d588..c2678b60408a42687502856c465cffa7f219dadc 100644
--- a/src/contexts.h
+++ b/src/contexts.h
@@ -86,9 +86,10 @@ enum BindingFlags {
V(REFLECT_DELETE_PROPERTY_INDEX, JSFunction, reflect_delete_property) \
V(SPREAD_ARGUMENTS_INDEX, JSFunction, spread_arguments) \
V(SPREAD_ITERABLE_INDEX, JSFunction, spread_iterable) \
- V(MATH_FLOOR, JSFunction, math_floor) \
- V(MATH_LOG, JSFunction, math_log) \
- V(MATH_SQRT, JSFunction, math_sqrt)
+ V(MATH_EXP_INDEX, JSFunction, math_exp) \
+ V(MATH_FLOOR_INDEX, JSFunction, math_floor) \
+ V(MATH_LOG_INDEX, JSFunction, math_log) \
+ V(MATH_SQRT_INDEX, JSFunction, math_sqrt)
#define NATIVE_CONTEXT_IMPORTED_FIELDS(V) \
V(ARRAY_CONCAT_INDEX, JSFunction, array_concat) \

Powered by Google App Engine
This is Rietveld 408576698