Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / PCH / block-helpers.h
blob3614cc7be93a060bed25eb6c474d75b00542b422
1 struct S0 {
2 S0();
3 S0(const S0 &) noexcept(false);
4 int a;
5 };
7 struct S {
8 void m() {
9 __block S0 x, y;
10 ^{ (void)x; (void)y; };