Add missing file.

From-SVN: r238810
This commit is contained in:
Martin Liska 2016-07-28 08:31:54 +00:00
parent ce84ada358
commit 9bd6a6aebf
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
/* { dg-do compile { target x86_64-*-* } } */
/* { dg-additional-options "-O3 -march=core-avx2" } */
unsigned *a;
void
fn1 ()
{
for (int i; i; ++i)
{
unsigned g (a[i] << 8 >> 24);
a[i] = g;
}
}