llvm-project/lldb/test/forward
Jim Ingham 2837b766f5 Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay).
Change the boolean "use_dynamic" over to a tri-state, no-dynamic, dynamic-w/o running target,
and dynamic with running target.

llvm-svn: 130832
2011-05-04 03:43:18 +00:00
..
Makefile Fixed C++ class clang type creation and display by making sure we omit 2010-10-13 03:15:28 +00:00
README.txt Fixed C++ class clang type creation and display by making sure we omit 2010-10-13 03:15:28 +00:00
TestForwardDeclaration.py Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay). 2011-05-04 03:43:18 +00:00
foo.c Fixed C++ class clang type creation and display by making sure we omit 2010-10-13 03:15:28 +00:00
foo.h Fixed C++ class clang type creation and display by making sure we omit 2010-10-13 03:15:28 +00:00
main.c Fixed C++ class clang type creation and display by making sure we omit 2010-10-13 03:15:28 +00:00

README.txt

This example has a function call in foo.c named "foo" that takes a forward
declaration to "struct bar" and uses it as a pointer argument. In main.c
we have a real declaration for "struct bar". We want to be able to find the
real definition of "struct bar" when we are stopped in foo in foo.c such that
when we stop in "foo" we see the contents of the "bar_ptr".