This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [PATCH] Fix tree inlining ICE


Jakub Jelinek wrote:-

> Hi!

Hi Jakub!

> +extern void foo (char *x);
> +void bar (void);
> +void bar (void)
> +{
> +  auto void baz (void);
> +  void baz (void)
> +    {
> +      char tmp[2];
> +      foo (tmp);
> +    }
> +  baz ();
> +}

Would you please put a one or two line comment in your testcases
explaining what they are testing?  It's pretty opaque otherwise.

Thanks,

Neil.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]