dwarves: No need to print the "signed ", the name has it already

So avoid duplicating, i.e. "signed signed int" was being used.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2018-12-20 14:55:38 -03:00
parent 0a9bac9a3e
commit 93d6d00165
1 changed files with 1 additions and 2 deletions

View File

@ -249,8 +249,7 @@ const char *base_type__name(const struct base_type *bt, const struct cu *cu,
base_type_fp_type_str[bt->float_type],
s(cu, bt->name));
else
snprintf(bf, len, "%s%s%s%s",
bt->is_signed ? "signed " : "",
snprintf(bf, len, "%s%s%s",
bt->is_bool ? "bool " : "",
bt->is_varargs ? "... " : "",
s(cu, bt->name));