diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/c/forward/README.txt')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/c/forward/README.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/Python/lldbsuite/test/lang/c/forward/README.txt b/packages/Python/lldbsuite/test/lang/c/forward/README.txt new file mode 100644 index 0000000..b7b66f7 --- /dev/null +++ b/packages/Python/lldbsuite/test/lang/c/forward/README.txt @@ -0,0 +1,5 @@ +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". |