[PATCH] Fix PR77514

Bernhard Reutner-Fischer rep.dot.nop@gmail.com
Fri Sep 16 07:26:00 GMT 2016


On 15 September 2016 09:08:36 CEST, Richard Biener <rguenther@suse.de> wrote:
>
>Bootstrapped and tested on x86_64-unknown-linux-gnu, applied to trunk.
>

>+  /* Likewise if we simplified to sth not queued for insertion.  */
>+  bool found = false;
>+  gsi = gsi_start (forced_stmts);
>+  for (; !gsi_end_p (gsi); gsi_next (&gsi))
>+    {
>+      gimple *stmt = gsi_stmt (gsi);
>+      tree forcedname = gimple_get_lhs (stmt);
>+      if (forcedname == folded)
{
>+	found = true;

break;}

Or do we fix up such code anyway somewhere?
thanks,
>+    }
>+  if (! found)



More information about the Gcc-patches mailing list