teak-llvm/lldb/packages/Python/lldbsuite/test/functionalities/frame_var/main.c
Jim Ingham eb236735e5 Add back code to implement "frame var -a,-l,-g" filters.
r285226 dropped the code that did these checks.  I am pretty
sure that was inadvertent, so I added that back in and added
a test for it.

<rdar://problem/31661252>

llvm-svn: 300564
2017-04-18 16:52:16 +00:00

12 lines
170 B
C

#include <stdio.h>
int g_var = 200;
int
main(int argc, char **argv)
{
int test_var = 10;
printf ("Set a breakpoint here: %d %d.\n", test_var, g_var);
return 0;
}