This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: Where is reg_n_info initialised?
- To: Martin dot Stromberg at lu dot erisoft dot se
- Subject: Re: Where is reg_n_info initialised?
- From: "Martin v. Loewis" <martin at loewis dot home dot cs dot tu-berlin dot de>
- Date: Sun, 12 Mar 2000 19:20:25 +0100
- CC: gcc-bugs at gcc dot gnu dot org
- References: <200003121537.QAA18770@mars.lu.erisoft.se>
> reg_n_info is defined in gcc-2.95.2/gcc/flow.c, but I can't find where
> it's initialised. Am I missing something?
It seems you miss that globals are zero-initialized
automatically. There is no need to initialize them further...
Martin