This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Using the tree.
On Sun, May 28, 2000 at 09:00:52PM +0300, Virgil Palanciuc wrote:
> Anyway, there must be a way to find out what stack slot is assigned to
> each variable (and to find out this info about arrays, too !!! ).
See DECL_RTL on the VAR_DECLs and PARM_DECLs in question.
If you're wanting to do some sort of post-processing on
code, you might have an easier job examining the debug
output instead of mucking about inside the compiler.
r~