Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / c / forward / main.c
blob5a13f1d1ea2b6c35f9983a9cfdd317b8d813ce00
1 #include "foo.h"
3 struct bar
5 int a;
6 int b;
7 };
9 int
10 main (int argc, char const *argv[])
12 struct bar b= { 1, 2 };
14 foo (&b);
16 return 0;