[Bug target/71008] [7 Regression] FAIL: gcc.target/i386/avx512f-vprord-1.c scan-assembler-times vprord
hjl.tools at gmail dot com
gcc-bugzilla@gcc.gnu.org
Sun May 8 14:06:00 GMT 2016
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71008
--- Comment #2 from H.J. Lu <hjl.tools at gmail dot com> ---
(In reply to H.J. Lu from comment #1)
> It is rotatert vs rotate. How did this happen?
There is:
/* Convert ROTATERT to ROTATE. */
if (code == ROTATERT)
{
unsigned int bitsize = GET_MODE_PRECISION (result_mode);
code = ROTATE;
if (VECTOR_MODE_P (result_mode))
count = bitsize / GET_MODE_NUNITS (result_mode) - count;
else
count = bitsize - count;
}
This testcase needs an update.
More information about the Gcc-bugs
mailing list