diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-11-15 21:13:13 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-11-15 21:13:13 +0000 |
commit | 2341380033491993ebf4675500d09fc842a53442 (patch) | |
tree | 1048d9cb311575df2df903f7b21fea4f48a901df /lldb/test/python_api/value/main.c | |
parent | 43bde96a4c50866ecc9311d186220c9e1474d134 (diff) | |
download | bcm5719-llvm-2341380033491993ebf4675500d09fc842a53442.tar.gz bcm5719-llvm-2341380033491993ebf4675500d09fc842a53442.zip |
Add test scenario for value.GetChildAtIndex(0) where value is a pointer to a simple type.
llvm-svn: 144697
Diffstat (limited to 'lldb/test/python_api/value/main.c')
-rw-r--r-- | lldb/test/python_api/value/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/python_api/value/main.c b/lldb/test/python_api/value/main.c index 0554ff0284b..afe4f0ed8bb 100644 --- a/lldb/test/python_api/value/main.c +++ b/lldb/test/python_api/value/main.c @@ -31,6 +31,8 @@ const char **g_table[2] = { days_of_week, weekdays }; int main (int argc, char const *argv[]) { int i; + int *my_int_ptr = &g_my_int; + printf("my_int_ptr points to location %p\n", my_int_ptr); const char **str_ptr = days_of_week; for (i = 0; i < 7; ++i) printf("%s\n", str_ptr[i]); // Break at this line |