blob: 225c13112a9168aad0ca78cfc1c8842469e425fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* { dg-xfail-run-if "32-bit vararg broken" { c++ } { "*" } { "" } } */
/* Simple test of vararg passing for problematic types with and without
double values passed between them. */
#define DTYPE _Decimal32
#define ONE 1.0df
#define THREE 3.0df
#define SEVEN 7.0df
#define ELEVEN 11.0df
#define INTS 1
#include "func-vararg-alternate.h"
int
main ()
{
doit ();
FINISH
}
|