Commit c378afbb by Alan Modra Committed by Alan Modra

re PR target/21017 (ppc 64bit target not using rlwinm)

	PR target/21017
	* gcc.target/powerpc/rotate.c: New.

From-SVN: r107878
parent d82ef875
2005-12-02 Alan Modra <amodra@bigpond.net.au>
PR target/21017
* gcc.target/powerpc/rotate.c: New.
2005-12-01 Jerry DeLisle <jvdelisle@gcc.gnu.org>
* gfortran.dg/pr24489.f90: Delete, replaced by read_eor.f90.
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "slwi" } } */
unsigned int foo (unsigned int x)
{
return ((x >> 16) & 0xffff) | ((x & 0xffff) << 16);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment