diff options
author | Daniel Berlin <dberlin@dberlin.org> | 2000-04-04 05:13:44 +0000 |
---|---|---|
committer | Daniel Berlin <dberlin@dberlin.org> | 2000-04-04 05:13:44 +0000 |
commit | e916eebd34429bad522ed1c2acffffb7764cf4d1 (patch) | |
tree | 82dbbc320ced132ab5835c71ffc52278ab09d137 | |
parent | a86cba99026c21ea4d821d3e16ecfe8dcdf03d5a (diff) | |
download | gdb-e916eebd34429bad522ed1c2acffffb7764cf4d1.tar.gz |
Update todo
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/TODO | 18 |
2 files changed, 22 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 98580a6c153..27f42a1379a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2000-04-04 Daniel Berlin <dan@cgsoftware.com> + + * TODO: Make note of various C++ things i have planned for 5.1. + Tue Apr 4 12:13:19 2000 Andrew Cagney <cagney@b1.cygnus.com> * printcmd.c (print_scalar_formatted): Use local variable ptr_bit @@ -289,6 +289,24 @@ GDB 5.1. -- +Re: Various C++ things + +value_headof/value_from_vtable_info are worthless, and should be removed. +The one place in printcmd.c that uses it should use the RTTI functions. + +RTTI for g++ should be using the typeinfo functions rather than the vtables. +The typeinfo functions are always at offset 4 from the beginning of the vtable, +and are always right. The vtables will have weird names like E::VB sometimes. +The typeinfo function will always be "E type_info function", or somesuch. + +value_virtual_fn_field needs to be fixed so there are no failures for virtual +functions for C++ using g++. + +Testsuite cases are the major priority right now for C++ support, since i have +to make a lot of changes that could potentially break each other. + + +-- GDB 5.0: Test results --------------------- |