Re: Official GCC git repository

2008-04-20 Thread Kirill A. Shutemov
Some of branches situated not on top of /branch directory in svn. For example redhat branches situated under /branch/redhat. There is only one branch 'redhat' in the git repository, that contain all redhat branches as directory. It's not very suitable. Does it possible to track this branches separa

Re: US-CERT Vulnerability Note VU#162289

2008-04-20 Thread Nicola Musatti
David Edelsohn wrote: Nicola, Please send the project files to Robert Seacord. Done. Cheers, Nicola -- Nicola.Musatti gmail com Home: http://nicola.musatti.googlepages.com/home Blog: http://wthwdik.wordpress.com/

RE: US-CERT Vulnerability Note VU#162289

2008-04-20 Thread Rupert Wood
Nicola Musatti wrote: > _main PROC > > ; 12 : char * b = "0123456789"; > ; 13 : for ( int l = 0; l < 1 << 30; ++l ) > ; 14 : f(b, l); > ; 15 : } > > xor eax, eax > ret 0 > _main ENDP Note that it optimised away your whole program! It could blank

Re: US-CERT Vulnerability Note VU#162289

2008-04-20 Thread Nicola Musatti
Rupert Wood wrote: Nicola Musatti wrote: _main PROC ; 12 :char * b = "0123456789"; ; 13 : for ( int l = 0; l < 1 << 30; ++l ) ; 14 : f(b, l); ; 15 : } xor eax, eax ret0 _main ENDP Note that it optimised away your whole program! It could blank out f(

Re: Official GCC git repository

2008-04-20 Thread Bernie Innocenti
On Fri, 2008-04-18 at 21:07 +0200, Samuel Tardieu wrote: > I think the mistake is to have them (git & hg) hosted on the same > machine as svn. Having them on "hg.gcc.gnu.org" and "git.gcc.gnu.org" > would allow to split the load between machines (even if > "hg.gcc.gnu.org" > and "git.gcc.gnu.org"

looking for loongson support

2008-04-20 Thread Eric Fisher
hi Is there anyone working on the loongson support of gcc? I notice that loongson has been added into the currently developing binutils. ericfisher

Re: omp workshare (PR35423) & beginner questions

2008-04-20 Thread Vasilis Liaskovitis
Hi, Thanks for the help. Some more questions: 1) I am trying to workshare reduction operators, currently working on SUM. INTEGER N REAL AA(N), MYSUM !$OMP PARALLEL !$OMP WORKSHARE MYSUM = SUM(AA) !$OMP END WORKSHARE !$OMP END PARALLEL To compute SUM, the scalarizer