Commit b585a51f by Jakub Jelinek Committed by Jakub Jelinek

sse4_1-pmuldq.c (TEST): Initialize even src1.i and src2.i fields even in the…

sse4_1-pmuldq.c (TEST): Initialize even src1.i and src2.i fields even in the second half of the arrays.

	* gcc.target/i386/sse4_1-pmuldq.c (TEST): Initialize
	even src1.i and src2.i fields even in the second half of the arrays.

From-SVN: r189018
parent c523fc89
2012-06-27 Jakub Jelinek <jakub@redhat.com>
* gcc.target/i386/sse4_1-pmuldq.c (TEST): Initialize
even src1.i and src2.i fields even in the second half of the arrays.
2012-06-27 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org> 2012-06-27 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
PR c++/51033. PR c++/51033.
......
...@@ -32,7 +32,7 @@ TEST (void) ...@@ -32,7 +32,7 @@ TEST (void)
int i, sign = 1; int i, sign = 1;
long long value; long long value;
for (i = 0; i < NUM; i += 2) for (i = 0; i < NUM * 2; i += 2)
{ {
src1.i[i] = i * i * sign; src1.i[i] = i * i * sign;
src2.i[i] = (i + 20) * sign; src2.i[i] = (i + 20) * sign;
......
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