1#include <stdint.h>
2#include <stdio.h>
3
4extern int foo();
5extern int bar();
6extern int baaz(int i);
7
8int main()
9{
10 int32_t index;
11
12 foo();
13
14 index = 512;
15
16 if (bar())
17 {
18 printf(format: "COMPILER PLEASE STOP HERE\n");
19 index = 256;
20 }
21
22 baaz(i: index);
23}
24

source code of lldb/test/API/lang/c/const_variables/main.c