Re: Vector indexing patch

2010-06-05 Thread Richard Guenther
On Fri, Jun 4, 2010 at 11:39 PM, Andrew Pinski wrote: > On Tue, Jun 1, 2010 at 12:21 PM, Artem Shinkarov > wrote: > > +      error_at (loc, "index value is out of bound"); > > That is wrong.  The Cell C/C++ language document says out of bounds > accesses are undefined (that is at runtime). I thi

Re: Vector indexing patch

2010-06-05 Thread Richard Guenther
On Tue, Jun 1, 2010 at 9:21 PM, Artem Shinkarov wrote: > This is a reworked patch of Andrew Pinski "Subscripting on vector > types" in terms of GSoC 2010 [Artjoms Sinkarovs]. > > This patch allows to index individual elements of vector type in C. > For example: vec[i], where vec is a vector with a

Incorrect format of copyright statement for Fortran manuals

2010-06-05 Thread Gerald Pfeifer
It has been reported via the FSF that 'gfortran.info' is copyrighted by the FSF '1999-2008', although it should be under the form '1999, 2000, [other years], 2008'. Indeed the GNU Coding Standards say the following: Do not abbreviate the year list using a range; for instance, do not write

Re: Poor internal documentation (was: dragonegg in FSF gcc?)

2010-06-05 Thread Jonathan Wakely
On 5 June 2010 04:53, Philipp Thomas wrote: > On Fri, 23 Apr 2010 16:23:29 +0200, Manuel López-Ibáñez > wrote: > >>Great! Go ahead, please. The wiki is easy to edit. > > Finally I got around to do it. > > Editing is easy ... kind of :) Creating the Links was easy but I > failed do discover how I

[doc PATCH] Obsolete support for POWER and POWER2

2010-06-05 Thread Segher Boessenkool
[Now using the text suggested by David.] Probably no one uses these old processors anymore, and support for them is getting in the way of other work in the rs6000 port. Let's remove it in 4.6. Okay? Segher RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/changes.html,v retrieving revision 1.90 diff

Re: [doc PATCH] Obsolete support for POWER and POWER2

2010-06-05 Thread Gerald Pfeifer
On Sat, 5 Jun 2010, Segher Boessenkool wrote: > [Now using the text suggested by David.] > > Probably no one uses these old processors anymore, and support for > them is getting in the way of other work in the rs6000 port. Well, if this is the text that David suggested, I say go ahead and commit.

Need help tracking down and fixing PR44364 (e500 FP register save bug)

2010-06-05 Thread Moffett, Kyle D
Hello, Several of us are trying to put together a "PowerPCSPE" Debian port (powerpc-linux-gnuspe, based around the e500v2), and we're experiencing a pretty bad FP register-save bug (PR44364 [0]). Specifically, it seems like GCC will occasionally only save half of the 64-bit double register on

Re: Question about Machine Description

2010-06-05 Thread yazdanbakhsh
Hi, I want to exclude all immediate or instruction. I did this by the following define_insn /-- (define_insn "iorsi3" [(set (match_operand:SI 0 "register_operand" "=d,d") (ior:SI (match_operand:SI 1 "uns_arith

Re: Question about Machine Description

2010-06-05 Thread Ian Lance Taylor
yazdanbakhsh writes: > I want to exclude all immediate or instruction. I did this by the following > define_insn > > /-- > (define_insn "iorsi3" > [(set (match_operand:SI 0 "register_operand" "=d,d") > (ior:SI (m

Re: Question about Machine Description

2010-06-05 Thread yazdanbakhsh
I did what you said, and the same error happened :( -- View this message in context: http://old.nabble.com/Question-about-Machine-Description-tp1026428p28790996.html Sent from the gcc - Dev mailing list archive at Nabble.com.

Re: Vector indexing patch

2010-06-05 Thread Andrew Pinski
On Sat, Jun 5, 2010 at 3:10 AM, Richard Guenther wrote: > On Fri, Jun 4, 2010 at 11:39 PM, Andrew Pinski wrote: >> On Tue, Jun 1, 2010 at 12:21 PM, Artem Shinkarov >> wrote: >> >> +      error_at (loc, "index value is out of bound"); >> >> That is wrong.  The Cell C/C++ language document says ou

Re: Vector indexing patch

2010-06-05 Thread Richard Guenther
On Sat, Jun 5, 2010 at 10:49 PM, Andrew Pinski wrote: > On Sat, Jun 5, 2010 at 3:10 AM, Richard Guenther > wrote: >> On Fri, Jun 4, 2010 at 11:39 PM, Andrew Pinski wrote: >>> On Tue, Jun 1, 2010 at 12:21 PM, Artem Shinkarov >>> wrote: >>> >>> +      error_at (loc, "index value is out of bound")

Re: Vector indexing patch

2010-06-05 Thread Andrew Pinski
On Sat, Jun 5, 2010 at 1:51 PM, Richard Guenther wrote: > Sure - we can simply emit a warning here if you prefer. Only with -Warray-bounds enabled like the rest of the C/C++ front-ends do :). Thanks, Andrew Pinski

Re: Vector indexing patch

2010-06-05 Thread Andrew Pinski
On Tue, Jun 1, 2010 at 12:21 PM, Artem Shinkarov wrote: > This is a reworked patch of Andrew Pinski "Subscripting on vector > types" in terms of GSoC 2010 [Artjoms Sinkarovs]. > > This patch allows to index individual elements of vector type in C. > For example: vec[i], where vec is a vector with

Re: Vector indexing patch

2010-06-05 Thread Joseph S. Myers
On Sat, 5 Jun 2010, Andrew Pinski wrote: > This is why OpenCL spec is not very good here really and not > consistent with the rest of the C/C++ standard. In fact I would say > we should treat it as the same as arrays out of bounds where it is > just undefined at runtime rather than an error. Thi

gcc-4.6-20100605 is now available

2010-06-05 Thread gccadmin
Snapshot gcc-4.6-20100605 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/4.6-20100605/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 4.6 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/trunk

Re: Question about Machine Description

2010-06-05 Thread Ian Lance Taylor
yazdanbakhsh writes: > I did what you said, and the same error happened :( I'm sorry you're having trouble, but if you want us to be able to help you you need to show us precisely what you did, precisely what happened, and what you expected to happen. Ian