OSDN Git Service

2004-08-07 Andrew Cagney <cagney@gnu.org>
authorcagney <cagney>
Sat, 7 Aug 2004 20:06:25 +0000 (20:06 +0000)
committercagney <cagney>
Sat, 7 Aug 2004 20:06:25 +0000 (20:06 +0000)
* doublest.c (floatformat_from_length): Fix tipo, "*" not "&".

gdb/ChangeLog
gdb/doublest.c

index baa2287..00a1b3f 100644 (file)
@@ -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.
 
index 265e692..e4dbb2a 100644 (file)
@@ -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;
 }