This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [tree-ssa, mainline] Fix nested inlining
On 18 Oct 2003 16:21:06 -0300, Alexandre Oliva <aoliva@redhat.com> wrote:
> On Oct 18, 2003, Jan Hubicka <hubicka@ucw.cz> wrote:
>
>> - DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
>
>> + if (DECL_ABSTRACT_ORIGIN (decl))
>> + DECL_ABSTRACT_ORIGIN (copy) = DECL_ABSTRACT_ORIGIN (decl);
>> + else
>> + DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
>
> Err... Given the definition of DECL_ORIGIN, I don't see how you
> change could make sense. For reference:
Agreed, this patch is not OK.
Jason