| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 92a2ed49444156801bf0a673adfcd5a36a06d52d..2a53057ae0cdfbe906e22e3a5e5d775efdfe300b 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -7192,6 +7192,9 @@ void Code::Disassemble(const char* name, FILE* out) {
|
| if (ic_state() == MONOMORPHIC) {
|
| PrintF(out, "type = %s\n", PropertyType2String(type()));
|
| }
|
| + if (is_call_stub() || is_keyed_call_stub()) {
|
| + PrintF(out, "argc = %d\n", arguments_count());
|
| + }
|
| }
|
| if ((name != NULL) && (name[0] != '\0')) {
|
| PrintF(out, "name = %s\n", name);
|
|
|