* c-exp.y (parse-number): Modify the float parsing logic to let it
authorWu Zhou <woodzltc@cn.ibm.com>
Tue, 20 Sep 2005 08:55:55 +0000 (08:55 +0000)
committerWu Zhou <woodzltc@cn.ibm.com>
Tue, 20 Sep 2005 08:55:55 +0000 (08:55 +0000)
recognize a suffix.

gdb/ChangeLog
gdb/c-exp.y

index 7e8c96d685ea5b4367fa66f48955c6b150b2e7ae..6fe82eabf1eb196161ea372caab691f20d061b98 100644 (file)
@@ -1,3 +1,8 @@
+2005-09-20  Wu Zhou  <woodzltc@cn.ibm.com>
+
+       * c-exp.y (parse-number): Modify the float parsing logic to let it 
+       recognize a suffix.
+
 2005-09-20  Wu Zhou  <woodzltc@cn.ibm.com>
 
        * expression.h (enum exp_opcode): Fix a format error of a comment.
index 1988e93413e0bdac3e499f85525f7258b7dcc077..637796c181aa3c8d09ce2938e77dc98f72fb842b 100644 (file)
@@ -1074,43 +1074,48 @@ parse_number (p, len, parsed_float, putithere)
   if (parsed_float)
     {
       /* It's a float since it contains a point or an exponent.  */
-      char c;
+      char *s = malloc (len);
       int num = 0;     /* number of tokens scanned by scanf */
       char saved_char = p[len];
 
       p[len] = 0;      /* null-terminate the token */
+
       if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
-       num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval,&c);
+       num = sscanf (p, "%g%s", (float *) &putithere->typed_val_float.dval,s);
       else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
-       num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval,&c);
+       num = sscanf (p, "%lg%s", (double *) &putithere->typed_val_float.dval,s);
       else
        {
 #ifdef SCANF_HAS_LONG_DOUBLE
-         num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval,&c);
+         num = sscanf (p, "%Lg%s", &putithere->typed_val_float.dval,s);
 #else
          /* Scan it into a double, then assign it to the long double.
             This at least wins with values representable in the range
             of doubles. */
          double temp;
-         num = sscanf (p, "%lg%c", &temp,&c);
+         num = sscanf (p, "%lg%s", &temp,s);
          putithere->typed_val_float.dval = temp;
 #endif
        }
       p[len] = saved_char;     /* restore the input stream */
-      if (num != 1)            /* check scanf found ONLY a float ... */
-       return ERROR;
-      /* See if it has `f' or `l' suffix (float or long double).  */
-
-      c = tolower (p[len - 1]);
-
-      if (c == 'f')
-       putithere->typed_val_float.type = builtin_type (current_gdbarch)->builtin_float;
-      else if (c == 'l')
-       putithere->typed_val_float.type = builtin_type (current_gdbarch)->builtin_long_double;
-      else if (isdigit (c) || c == '.')
-       putithere->typed_val_float.type = builtin_type (current_gdbarch)->builtin_double;
-      else
-       return ERROR;
+
+      if (num == 1)
+       putithere->typed_val_float.type = 
+         builtin_type (current_gdbarch)->builtin_double;
+
+      if (num == 2 )
+       {
+         /* See if it has any float suffix: 'f' for float, 'l' for long 
+            double.  */
+         if (!strcasecmp (s, "f"))
+           putithere->typed_val_float.type = 
+             builtin_type (current_gdbarch)->builtin_float;
+         else if (!strcasecmp (s, "l"))
+           putithere->typed_val_float.type = 
+             builtin_type (current_gdbarch)->builtin_long_double;
+         else
+           return ERROR;
+       }
 
       return FLOAT;
     }
This page took 0.034065 seconds and 4 git commands to generate.