Some GCC porting questions

2009-10-26 Thread palpar
Hi all, I'd have two questions needed for work on porting gcc-3.2.3. 1. How can I tell from the RTL declaration of a function if it is declared INLINE of not? 2. Where is the code responsible for allocating those variables on the stack which don't fit in registers (needed to fix debug info

Re: Some GCC porting questions

2009-10-26 Thread Ian Lance Taylor
palpar palpa...@gmail.com writes: 1. How can I tell from the RTL declaration of a function if it is declared INLINE of not? You have to look at the tree decl, at DECL_DECLARED_INLINE_P. 2. Where is the code responsible for allocating those variables on the stack which don't fit in registers