Chromium Code Reviews| Index: vm/raw_object.h |
| =================================================================== |
| --- vm/raw_object.h (revision 12152) |
| +++ vm/raw_object.h (working copy) |
| @@ -616,8 +616,8 @@ |
| intptr_t num_optional_positional_parameters_; |
| intptr_t num_optional_named_parameters_; |
| intptr_t usage_counter_; // Incremented while function is running. |
|
srdjan
2012/09/12 06:37:05
Why not move the numbers of parameters to uint16 a
regis
2012/09/12 15:42:27
I would be reluctant to restrict the maximum numbe
|
| - intptr_t deoptimization_counter_; |
| - intptr_t kind_tag_; |
| + uint16_t deoptimization_counter_; |
| + uint16_t kind_tag_; |
| }; |