This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Add another e500 subreg pattern


On Wed, Nov 23, 2016 at 09:14:44PM +0000, Joseph Myers wrote:
> This patch adds an insn pattern similar to various patterns already
> present to handle extracting such a subreg.  This allows the glibc
> build to get further, until it runs into an assembler error for which
> I have another patch.  OK to commit?
> 
> gcc:
> 2016-11-23  Joseph Myers  <joseph@codesourcery.com>
> 
> 	* config/rs6000/spe.md (*frob_<SPE64:mode>_ti_8): New insn
> 	pattern.
> 
> gcc/testsuite:
> 2016-11-23  Joseph Myers  <joseph@codesourcery.com>
> 
> 	* gcc.c-torture/compile/20161123-1.c: New test.

Okay, thanks!  One question...

> --- gcc/testsuite/gcc.c-torture/compile/20161123-1.c	(nonexistent)
> +++ gcc/testsuite/gcc.c-torture/compile/20161123-1.c	(working copy)
> @@ -0,0 +1,7 @@
> +double
> +f (long double x)
> +{
> +  union { long double ld; double d[2]; } u;
> +  u.ld = x;
> +  return u.d[1];
> +}

This is undefined behaviour with -mlong-double-64; do we care?


Segher


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]