aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/incoming-2.c
blob: 2947d3347cd9815c9a1a94adf1629ed4c1a59ce6 (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* } && ilp32 } } } */
/* { 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\]" } } */