Chromium Code Reviews| Index: runtime/lib/object.cc |
| =================================================================== |
| --- runtime/lib/object.cc (revision 32732) |
| +++ runtime/lib/object.cc (working copy) |
| @@ -87,7 +87,7 @@ |
| } |
| } |
| if (!function.IsNull()) { |
| - const int total_num_parameters = function.NumParameters(); |
| + const intptr_t total_num_parameters = function.NumParameters(); |
| const Array& array = Array::Handle(Array::New(total_num_parameters - 1)); |
| // Skip receiver. |
| for (int i = 1; i < total_num_parameters; i++) { |