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
This commit is contained in:
Jakub Jelinek 2012-06-27 16:45:55 +02:00 committed by Jakub Jelinek
parent c523fc894c
commit b585a51fb9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
PR c++/51033.

View File

@ -32,7 +32,7 @@ TEST (void)
int i, sign = 1;
long long value;
for (i = 0; i < NUM; i += 2)
for (i = 0; i < NUM * 2; i += 2)
{
src1.i[i] = i * i * sign;
src2.i[i] = (i + 20) * sign;