view gcc/testsuite/gcc.dg/lto/pr70955_0.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* __builtin_ms_va_list is only supported for x86 -m64.  */
/* { dg-skip-if "" { ! { { i?86-*-* x86_64-*-* } && { ! ilp32 } } } } */

#include <stdio.h>

int __attribute__((ms_abi)) va_demo (int count, ...);

int
main (void)
{
  printf ("sum == %d\n", va_demo (5, 1, 2, 3, 4, 5));
  return 0;
}