mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 09:14:14 +08:00
Introduce float_const_operation
This adds class float_const_operation, an operation holding a floating-point constant. Unlike most other new operations, this one requires a custom 'dump' method. gdb/ChangeLog 2021-03-08 Tom Tromey <tom@tromey.com> * expprint.c (float_const_operation::dump): New method. * expop.h (float_data): New typedef. (class float_const_operation): New.
This commit is contained in:
@ -1283,4 +1283,12 @@ dump_for_expression (struct ui_file *stream, int depth,
|
||||
fprintf_filtered (stream, "\n");
|
||||
}
|
||||
|
||||
void
|
||||
float_const_operation::dump (struct ui_file *stream, int depth) const
|
||||
{
|
||||
fprintf_filtered (stream, _("%*sFloat: "), depth, "");
|
||||
print_floating (m_data.data (), m_type, stream);
|
||||
fprintf_filtered (stream, "\n");
|
||||
}
|
||||
|
||||
} /* namespace expr */
|
||||
|
Reference in New Issue
Block a user