Re: Question on GGC

2007-09-27 Thread 吴曦
Sorry, I found it in gccint, thanks :-) 2007/9/28, 吴曦 <[EMAIL PROTECTED]>: > 2007/9/27, Zdenek Dvorak <[EMAIL PROTECTED]>: > > Hello, > > > > > I have several global variables which are of type rtx. They are used > > > in flow.c ia64.c and final.c. As stated in the internal doc with > > > types. I

Re: Question on GGC

2007-09-27 Thread 吴曦
2007/9/27, Zdenek Dvorak <[EMAIL PROTECTED]>: > Hello, > > > I have several global variables which are of type rtx. They are used > > in flow.c ia64.c and final.c. As stated in the internal doc with > > types. I add GTY(()) marker after the keyword 'extern'. for example: > > extern GTY(())

Re: Question on GGC

2007-09-27 Thread Zdenek Dvorak
Hello, > I have several global variables which are of type rtx. They are used > in flow.c ia64.c and final.c. As stated in the internal doc with > types. I add GTY(()) marker after the keyword 'extern'. for example: > extern GTY(()) rtx a; > these 'extern's are added in regs.h which is in

Question on GGC

2007-09-27 Thread 吴曦
Hi. I have several global variables which are of type rtx. They are used in flow.c ia64.c and final.c. As stated in the internal doc with types. I add GTY(()) marker after the keyword 'extern'. for example: extern GTY(()) rtx a; these 'extern's are added in regs.h which is included in flow