Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / c / global_variables / a.c
blob4861b7116b057db6fc124f5f243709621228d8f1
1 int g_a = 123;
2 struct Point {
3 int x;
4 int y;
5 };
6 struct Point g_marked_spot = { 20, 21 };