Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / linux / mix-dwo-and-regular-objects / b.c
blobd79970e13d491fce4a4b8d5a61e4c0aac6e04ab5
1 extern int f();
3 void g() {
4 int y = 14;
5 int x = f();
8 int main() {
9 g();
10 return 0;