1 // PR rtl-optimization/87475
2 // { dg-do compile { target freorder } }
3 // { dg-options "-O2 -freorder-blocks-and-partition -fmodulo-sched" }
4 
5 struct A { A (); ~A (); };
6 int foo (A, A);
bar(bool x)7 void bar (bool x) { x ? foo (A (), A ()) : 0; }
8