This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Dumping RTL???
- From: Andrew Haley <aph at redhat dot com>
- To: "gyanindra mishra" <gyana_m at hotmail dot com>
- Cc: gcc at gcc dot gnu dot org
- Date: Tue, 3 Dec 2002 11:00:47 +0000 (GMT)
- Subject: Re: Dumping RTL???
- References: <F87ANnYqKrlrKrKDd8I0001e4fa@hotmail.com>
gyanindra mishra writes:
> Thanks ..
>
> >Can you explain your problem, rather than just ask about a proposed
> >solution. Why do you want to do this?
>
> I am trying to divide the Gcc flow into two parts so that the vast
> GCC code can be splitted.
> In the front-end,i want to dump the RTL with full information and Back-End
> is to convert RTL to object.
>
> So I need to dump the RTL into a file. and in backend to get it back into
> the same form.
This question is asked quite a lot.
We've made that impossible with standard gcc. This is deliberate.
It's deliberate because we don't want someone to be able to use the
front end of gcc with an unfree back end.
Andrew.