Chromium Code Reviews| Index: src/builtins/builtins.h |
| diff --git a/src/builtins/builtins.h b/src/builtins/builtins.h |
| index 40cbfef9df44b49804a402020553ca0963aba5ff..3de825303cd4e802bc9f6bd5fc0c4d3d70c2c86a 100644 |
| --- a/src/builtins/builtins.h |
| +++ b/src/builtins/builtins.h |
| @@ -179,6 +179,7 @@ namespace internal { |
| TFS(ToInteger, BUILTIN, kNoExtraICState, TypeConversion) \ |
| TFS(ToLength, BUILTIN, kNoExtraICState, TypeConversion) \ |
| TFS(Typeof, BUILTIN, kNoExtraICState, Typeof) \ |
| + TFS(GetSuperConstructor, BUILTIN, kNoExtraICState, TypeConversion) \ |
| \ |
| /* Handlers */ \ |
| TFS(KeyedLoadIC_Megamorphic_TF, KEYED_LOAD_IC, kNoExtraICState, \ |
| @@ -710,7 +711,7 @@ namespace internal { |
| /* ES6 #sec-%typedarray%.prototype.keys */ \ |
| TFJ(TypedArrayPrototypeKeys, 0) \ |
| /* ES6 #sec-%typedarray%.prototype.values */ \ |
| - TFJ(TypedArrayPrototypeValues, 0) \ |
| + TFJ(TypedArrayPrototypeValues, 0) |
|
Henrique Ferreiro
2016/12/16 11:47:25
This change was made by git cl format.
|
| #define IGNORE_BUILTIN(...) |