[PATCH] Fix ICE when dumping in ipa inline pass

Ian Lance Taylor iant@google.com
Thu Oct 8 15:03:00 GMT 2009


Mark Heffernan <meheff@google.com> writes:

> -		 (*lang_hooks.decl_printable_name) (temp, 2));
> +                 (DECL_NAME (temp) ?
> +                  (*lang_hooks.decl_printable_name) (temp, 2) : "(unnamed)"));

Richi OK'ed this, but note that formatting should be

                (DECL_NAME (temp)
                 ? (*lang_hooks.decl_printable_name) (temp, 2)
                 : "(unnamed)"));

Ian



More information about the Gcc-patches mailing list