PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / lto / pr70955_0.c
blob52d000a8d586e181a3631959f51ae22894950072
1 /* __builtin_ms_va_list is only supported for x86 -m64. */
2 /* { dg-skip-if "" { ! { { i?86-*-* x86_64-*-* } && { ! ilp32 } } } } */
4 #include <stdio.h>
6 int __attribute__((ms_abi)) va_demo (int count, ...);
8 int
9 main (void)
11 printf ("sum == %d\n", va_demo (5, 1, 2, 3, 4, 5));
12 return 0;