Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Import / objc-arc / Inputs / cleanup-objects.m
blob9c18399259f9d08d486fa33b316951b2aeee1e1e
1 typedef struct {
2   id x;
3 } S;
5 id getObj(int c, id a) {
6   // Commenting out the following line because AST importer crashes when trying
7   // to import a BlockExpr.
8   // return c ? ^{ return a; }() : ((S){ .x = a }).x;
9   return ((S){ .x = a }).x;