mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 22:38:56 -04:00

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
12 lines
170 B
C
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;
|
|
}
|