xref: /llvm-project/lldb/test/API/lang/c/const_variables/main.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <stdint.h>
2 #include <stdio.h>
3 
4 extern int foo();
5 extern int bar();
6 extern int baaz(int i);
7 
main()8 int main()
9 {
10   int32_t index;
11 
12   foo();
13 
14   index = 512;
15 
16   if (bar())
17   {
18     printf("COMPILER PLEASE STOP HERE\n");
19     index = 256;
20   }
21 
22   baaz(index);
23 }
24