diff options
Diffstat (limited to 'gdb/ada-lex.l')
-rw-r--r-- | gdb/ada-lex.l | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ada-lex.l b/gdb/ada-lex.l index a52f505..842ac70 100644 --- a/gdb/ada-lex.l +++ b/gdb/ada-lex.l @@ -376,9 +376,11 @@ processReal (const char *num0) sscanf (num0, DOUBLEST_SCAN_FORMAT, &yylval.typed_val_float.dval); yylval.typed_val_float.type = type_float (); - if (sizeof(DOUBLEST) >= TARGET_DOUBLE_BIT / TARGET_CHAR_BIT) + if (sizeof(DOUBLEST) >= gdbarch_double_bit (current_gdbarch) + / TARGET_CHAR_BIT) yylval.typed_val_float.type = type_double (); - if (sizeof(DOUBLEST) >= TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT) + if (sizeof(DOUBLEST) >= gdbarch_long_double_bit (current_gdbarch) + / TARGET_CHAR_BIT) yylval.typed_val_float.type = type_long_double (); return FLOAT; |