aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/vararg-1.c
blob: 1875e0a6973d7ec5efdce524bee9cb00e85750e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* PR middle-end/36858 */
/* { dg-do run } */
/* { dg-options "-w" { target { lp64 } } } */
/* { dg-options "-w -msse2 -mpreferred-stack-boundary=2" { target { ilp32 } } } */

#include "sse2-check.h"
#include <stdarg.h>
#include <emmintrin.h>

int
__attribute__((noinline))
test (int a, ...)
{
  return a;
}

__m128 n1 = { -283.3, -23.3, 213.4, 1119.03 };

int
__attribute__((noinline))
foo (void)
{
  return test (1, n1);
}

static void
__attribute__((noinline))
sse2_test (void)
{
  if (foo () != 1)
    abort ();
}