Re: Contributing to gcc

2008-11-11 Thread Ian Lance Taylor
José Manuel Marín Román <[EMAIL PROTECTED]> writes: > I'm a spanish senior c++ development and I would like to contribute to > gnu compiler in some way you consider neccesary. > > My expertise is on graphic and games technologies, such as 3d realtime > engine programming, raytracing, artificial in

Re: Is there any plan for "data propagation from Tree SSA to RTL" to be in GCC mainline?

2008-11-11 Thread Andrey Belevantsev
Bingfeng Mei wrote: I found the the GsoC project and patch here (only 2007) http://code.google.com/soc/2007/gcc/appinfo.html?csaid=E0FEBB869A5F65A8 Is this patch only for propagating data dependency or does it include propagating alias info as well? The patch at http://gcc.gnu.org/ml/gcc/2007-1

Cooperation request: ScienceStage.com - the online portal for institutes, scientists and universities

2008-11-11 Thread contact
Dear Sir/Madam, ScienceStage.com is a new-style, user-based and free science portal for institutes, scientists and universities. The internet is shaping up to undoubtedly become the future preferred medium for sharing scientific experience. ScienceStage.com enables you to present you and your i

Re: Passing attributes to RTX

2008-11-11 Thread Michael Meissner
On Mon, Nov 10, 2008 at 03:40:13PM -0500, [EMAIL PROTECTED] wrote: > > Hello all, > > While prototyping a port of gcc I think that the RTX is lacking some > information needed to generate machine dependent files. The expression > trees have the correct information and I can likely hack in a quick

Contributing to gcc

2008-11-11 Thread José Manuel Marín Román
Hi again, I better resend the message from my personal mail account. Hi all, I'm a spanish senior c++ development and I would like to contribute to gnu compiler in some way you consider neccesary. My expertise is on graphic and games technologies, such as 3d realtime engine programming, rayt

Cooperation request: ScienceStage.com - the online portal for institutes, scientists and universities

2008-11-11 Thread contact
Dear Sir/Madam, ScienceStage.com is a new-style, user-based and free science portal for institutes, scientists and universities. The internet is shaping up to undoubtedly become the future preferred medium for sharing scientific experience. ScienceStage.com enables you to present you and your i

RE: Is there any plan for "data propagation from Tree SSA to RTL" to be in GCC mainline?

2008-11-11 Thread Bingfeng Mei
I found the the GsoC project and patch here (only 2007) http://code.google.com/soc/2007/gcc/appinfo.html?csaid=E0FEBB869A5F65A8 Is this patch only for propagating data dependency or does it include propagating alias info as well? Bingfeng > -Original Message- > From: Andrey Belevantsev

Contributing to gcc

2008-11-11 Thread José Manuel Marín Román
Hi all, I'm a spanish senior c++ development and I would like to contribute to gnu compiler in some way you consider neccesary. My expertise is on graphic and games technologies, such as 3d realtime engine programming, raytracing, artificial intelligence, and so on... and currently I'm worki

Re: [BUG] pragma: attempt to use poisoned * in struct member

2008-11-11 Thread Jiri Slaby
On 11/11/2008 02:00 AM, Tom Tromey wrote: >> "Jiri" == Jiri Slaby <[EMAIL PROTECTED]> writes: > > Jiri> I want to extend cpp to extract some more info (for backward > Jiri> mapping from preprocessed_code into source_code+line+column) > Jiri> into xml while preprocessing and I use gdome2 librar

Re: Passing attributes to RTX

2008-11-11 Thread Michael Meissner
Ok, I just checked in a fix for this into the branch. The problem was the function that was testing to see if one memory had default attributes was not looking at the address space field. Let me know if this helps your port. -- Michael Meissner, IBM 4 Technology Place Drive, MS 2203A, Westford,

bug in GCC or C++ standard ?

2008-11-11 Thread Mark Tall
Hello, I've come across an oddity in C++, involving anonymous unions and const variables. Neither of the two classes below will compile using gcc 4.3.0. Is this a bug in gcc or the C++ standard itself ? class my_class_1 { union { const int x; const int y; }; my_class_1() :

Re: bug in GCC or C++ standard ?

2008-11-11 Thread James Dennett
On Tue, Nov 11, 2008 at 6:53 PM, Mark Tall <[EMAIL PROTECTED]> wrote: > Hello, > > I've come across an oddity in C++, involving anonymous unions and > const variables. Neither of the two classes below will compile using > gcc 4.3.0. Is this a bug in gcc or the C++ standard itself ? No... > class

Re: bug in GCC or C++ standard ?

2008-11-11 Thread Mark Tall
On 12/11/2008, James Dennett <[EMAIL PROTECTED]> wrote: > In a union only one field can be active at one time, hence > initializing more than one makes no sense > ... > However, const items need to be initialized, hence potting two in a > union makes no sense. Conceptually there is nothing wrong w

Re: bug in GCC or C++ standard ?

2008-11-11 Thread James Dennett
On Tue, Nov 11, 2008 at 8:04 PM, Mark Tall <[EMAIL PROTECTED]> wrote: > On 12/11/2008, James Dennett <[EMAIL PROTECTED]> wrote: >> In a union only one field can be active at one time, hence >> initializing more than one makes no sense >> ... >> However, const items need to be initialized, hence pot