diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-02-23 18:43:41 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-02-23 18:43:41 +0000 |
commit | a6205f535ae295e644a1ec53fa130e2785adfb58 (patch) | |
tree | 7ea3cdabe1196869e61db644155a93fb9ad84db4 /gdb/jv-exp.y | |
parent | 0f0b8dcdc328692f3b92cf2034b8866f0c01fa33 (diff) | |
download | gdb-a6205f535ae295e644a1ec53fa130e2785adfb58.zip gdb-a6205f535ae295e644a1ec53fa130e2785adfb58.tar.gz gdb-a6205f535ae295e644a1ec53fa130e2785adfb58.tar.bz2 |
* 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/jv-exp.y')
-rw-r--r-- | gdb/jv-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/jv-exp.y b/gdb/jv-exp.y index 70f94ca..8017372 100644 --- a/gdb/jv-exp.y +++ b/gdb/jv-exp.y @@ -713,7 +713,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 ... */ |