llvm-project/lldb/test/forward
Johnny Chen a8807f93b7 Modify the command passed to command interpreter from 'expr' (which is an alias of 'expression')
to 'expression' to avoid cases where 'expr' has been unaliased.

llvm-svn: 116780
2010-10-19 00:52:07 +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 Modify the command passed to command interpreter from 'expr' (which is an alias of 'expression') 2010-10-19 00:52:07 +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".