avx512f-vbroadcastf64x4-2.c: Fix the uninitialized variable problem.
gcc/testsuite/ * gcc.target/i386/avx512f-vbroadcastf64x4-2.c: Fix the uninitialized variable problem. From-SVN: r213096
This commit is contained in:
parent
f1fa08e327
commit
16640a4e30
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-07-27 Petr Murzin <petr.murzin@intel.com>
|
||||
|
||||
* gcc.target/i386/avx512f-vbroadcastf64x4-2.c: Fix the uninitialized
|
||||
variable problem.
|
||||
|
||||
2014-07-27 Richard Sandiford <rdsandiford@googlemail.com>
|
||||
|
||||
PR rtl-optimization/61926
|
||||
|
|
|
@ -29,7 +29,7 @@ TEST (void)
|
|||
double res_ref[SIZE];
|
||||
|
||||
sign = -1;
|
||||
for (i = 0; i < 2; i++)
|
||||
for (i = 0; i < 4; i++)
|
||||
{
|
||||
src.a[i] = 34.67 * i * sign;
|
||||
sign = sign * -1;
|
||||
|
|
Loading…
Add table
Reference in a new issue