diff options
author | Daniel Jacobowitz <dan@debian.org> | 2006-02-23 18:43:41 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2006-02-23 18:43:41 +0000 |
commit | a739a1002040e87f16c67d4c0b126e0f96bd2169 (patch) | |
tree | 26f02903cce21fbfde02f32f12b2075d9b060b1c /gdb/p-exp.y | |
parent | bef6a6855742f88e0d960b982581bf3d1f9b409c (diff) | |
download | gdb-a739a1002040e87f16c67d4c0b126e0f96bd2169.tar.gz |
* doublest.h: Conditionalize DOUBLEST on PRINTF_HAS_LONG_DOUBLE
also.
(DOUBLEST_FORMAT): Rename to DOUBLEST_PRINT_FORMAT.
(DOUBLEST_SCAN_FORMAT): New.
* ada-lex.l (PRINTF_HAS_LONG_DOUBLE): Remove redefinitions.
(processReal): Use DOUBLEST_SCAN_FORMAT.
* c-exp.y (parse_number): Likewise.
* jv-exp.y (parse_number): Likewise.
* objc-exp.y (parse_number): Likewise.
* p-exp.y (parse_number): Likewise.
Diffstat (limited to 'gdb/p-exp.y')
-rw-r--r-- | gdb/p-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/p-exp.y b/gdb/p-exp.y index 08853d50b18..e095a35b99c 100644 --- a/gdb/p-exp.y +++ b/gdb/p-exp.y @@ -799,7 +799,7 @@ parse_number (p, len, parsed_float, putithere) char saved_char = p[len]; p[len] = 0; /* null-terminate the token */ - num = sscanf (p, DOUBLEST_FORMAT "%c", + num = sscanf (p, DOUBLEST_SCAN_FORMAT "%c", &putithere->typed_val_float.dval, &c); p[len] = saved_char; /* restore the input stream */ if (num != 1) /* check scanf found ONLY a float ... */ |