https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116823
--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Here is a reduced testcase for fold-const.cc case: ``` struct s2 { int i; s2(const int &a) : i (a) {} }; int h(s2 b); int g(int l, int r) { return h(l > r ? l : r); } ``` Which shows up since r6-68-g58cc255ca031b2 which added clobbers in front of the constructor. I will add this as a testcase as soon as my testing is finished.