[LIB]: Print the inline expansion sizes when printing a function

Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
This commit is contained in:
Arnaldo Carvalho de Melo 2007-04-30 16:10:54 -03:00
parent 5adafd00c4
commit 5d1513d035
1 changed files with 2 additions and 2 deletions

View File

@ -1711,8 +1711,8 @@ static size_t function__tag_fprintf(const struct tag *tag, const struct cu *cu,
break;
}
printed = fprintf(fp, "%.*s", indent, tabs);
n = fprintf(fp, "%s(); /* low_pc=%#llx */",
function__name(alias, cu),
n = fprintf(fp, "%s(); /* size=%zd, low_pc=%#llx */",
function__name(alias, cu), exp->size,
(unsigned long long)exp->low_pc);
c += n;
printed += n;