Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Import / local-struct-use-origins / Inputs / Callee.cpp
blob96cd2f22e49349a39abbf384a88fe479befa06dc
1 struct Bar {
2 void bar(int _a, bool _b) {
4 struct S { int a; };
5 S s = { _a };
8 struct S { bool b; };
9 S t = { _b };