aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr55359.c
blob: 222affc6642dd6b63e60c0f5c729f48ab26fc531 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-mavx2 -O2" } */

#include <x86intrin.h>

__m128d
f (__m256d x)
{
  return *((__m128d*) ((double *) &x + 1));
}