Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / PCH / cxx_paren_init.h
blob25cf8da02daf93862ef6534a0cf9fb3a90b2578b
1 struct S { int i, j; };
3 union U { unsigned : 8; int i; char j; };
5 constexpr S foo(int i, int j) { return S(i, j); }
7 void bar(int i, int j) { int arr[4](i, j); }
9 constexpr U baz(int i) { return U(i); }