This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
New testcase
- To: gcc-patches at gcc dot gnu dot org
- Subject: New testcase
- From: law at redhat dot com
- Date: Fri, 06 Jul 2001 08:32:14 -0700
- Reply-to: law at redhat dot com
Would you believe nothing in our testsuite is recognized as a rotate
right 31 bits?
Anyway, this fixes a regression for a port that is still internal to
Red Hat, but I figured I'd go ahead and get the testcase installed :-)
Installed as compile/20010706-1.c
foo(unsigned int x)
{
return (x << 1) | (x >> 31);
}