aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/dfp/func-vararg-size0.c
blob: bc8b20fd48498a67a70259c4c972d083f9fbc078 (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
35
36
37
38
39
40
41
/* C99 6.5.2.2 Function calls.  */

#include <stdarg.h>
#include "dfp-dbg.h"

struct S1
{
  struct
  {
    _Decimal64 e;
  } b[0];
};

/* Test handling vararg parameters whose size is 0.  */

int check_var(int z,...)
{
  double d;
  struct S1 s1;
  long long result;
  va_list ap;
  va_start (ap, z);
  d = va_arg (ap, double);
  s1 = va_arg (ap, struct S1);
  result = va_arg (ap, long long);
  va_end (ap);
  return (result == 2LL);

}

int
main ()
{
  struct S1 s1;
  struct S1 a1[5];

  if (check_var(5, 1.0, s1, 2LL, a1[2], a1[2]) == 0)
    FAILURE

  FINISH
}