Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-13 | Use require dwarf2_support | Tom Tromey | 1 | -3/+1 | |
This changes some tests to use "require dwarf2_support". | |||||
2023-01-01 | Update copyright year range in header of all files managed by GDB | Joel Brobecker | 1 | -1/+1 | |
This commit is the result of running the gdb/copyright.py script, which automated the update of the copyright year range for all source files managed by the GDB project to be updated to include year 2023. | |||||
2022-03-14 | Correctly print subrange types in generic_value_print | Tom Tromey | 1 | -0/+78 | |
I noticed that generic_value_print assumes that a subrange type is always a subrange of an integer type. However, this isn't necessarily the case. In Ada, for example, one has subranges of character and enumeration types. This code isn't often exercised, I think, because languages with real subrange types tend to implement their own printers. However, it still seemed worth fixing. |