aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/incoming-2.c
blob: 4fc5629f0de39e6f482f6f71df9c3bcce38a23e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* PR middle-end/37009 */
/* { dg-do compile { target { { ! *-*-darwin* } && ia32 } } } */
/* { dg-options "-w -msse2 -mpreferred-stack-boundary=2" } */

#include <emmintrin.h>

extern void bar (int *);

int
foo(__m128 x, __m128 y, __m128 z, __m128 a, int size)
{
  int __attribute((aligned(16))) xxx;

  xxx = 2;
  bar (&xxx);
  return size;
}

/* { dg-final { scan-assembler-not "and\[l\]\[ \t\]" } } */