blob: 9ed9ab087d0b9d80dbd81e446d770c77163cf120 (
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
33
34
|
/* PR middle-end/36858 */
/* { dg-do run } */
/* { dg-options "-w" { target { lp64 } } } */
/* { dg-options "-w" { target { llp64 } } } */
/* { dg-options "-w -msse2 -mpreferred-stack-boundary=2" { target { ilp32 } } } */
/* { dg-require-effective-target sse2 } */
#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 ();
}
|