diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-08-07 20:06:28 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-08-07 20:06:28 +0000 |
commit | 9b0dea39fa2f08a6156386f67680520e74f046d8 (patch) | |
tree | 10b34ae312356bb6bf908c5e5cd3a355b2dfbec0 /gdb | |
parent | 5cf7abace19872a601b6149b109da7088ffc67cf (diff) | |
download | gdb-9b0dea39fa2f08a6156386f67680520e74f046d8.zip gdb-9b0dea39fa2f08a6156386f67680520e74f046d8.tar.gz gdb-9b0dea39fa2f08a6156386f67680520e74f046d8.tar.bz2 |
2004-08-07 Andrew Cagney <cagney@gnu.org>
* doublest.c (floatformat_from_length): Fix tipo, "*" not "&".
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/doublest.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index baa2287..00a1b3f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2004-08-07 Andrew Cagney <cagney@gnu.org> + * doublest.c (floatformat_from_length): Fix tipo, "*" not "&". + * gdbtypes.c (_initialize_gdbtypes): Do not swap builtin_type_int8 through to builtin_type_uint128. diff --git a/gdb/doublest.c b/gdb/doublest.c index 265e692..e4dbb2a 100644 --- a/gdb/doublest.c +++ b/gdb/doublest.c @@ -652,7 +652,7 @@ floatformat_from_length (int len) format = NULL; if (format == NULL) error ("Unrecognized %d-bit floating-point type.", - len & TARGET_CHAR_BIT); + len * TARGET_CHAR_BIT); return format; } |