sim: bfin: simplify field width processing and fix build warnings
This fix the build time warning: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
02bb38cc80
commit
2fa7a0570b
@ -1,3 +1,8 @@
|
||||
2012-04-01 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* bfin-dis.c (fmtconst): Replace decimal handling with a single
|
||||
sprintf call and the '*' field width.
|
||||
|
||||
2012-04-01 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* machs.c (bfin_model_map_bfrom): Return when mnum is 535.
|
||||
|
@ -223,16 +223,7 @@ fmtconst_str (const_forms_t cf, bs32 x, bu32 pc)
|
||||
x <<= constant_formats[cf].scale;
|
||||
|
||||
if (constant_formats[cf].decimal)
|
||||
{
|
||||
if (constant_formats[cf].leading)
|
||||
{
|
||||
char ps[10];
|
||||
sprintf (ps, "%%%ii", constant_formats[cf].leading);
|
||||
sprintf (buf, ps, x);
|
||||
}
|
||||
else
|
||||
sprintf (buf, "%i", x);
|
||||
}
|
||||
sprintf (buf, "%*i", constant_formats[cf].leading, x);
|
||||
else
|
||||
{
|
||||
if (constant_formats[cf].issigned && x < 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user