blob: bfc1731f3c3b28c33547c5c0cb7087f2fd2c693f (
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
|
/*
va-arg-20.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#pragma disable_warning 85
#include <stdarg.h>
void foo(va_list v)
{
unsigned long long x = va_arg (v, unsigned long long);
if (x != 16LL)
ASSERT(0);
}
void bar(char c, char d, ...)
{
va_list v;
va_start(v, d);
foo(v);
va_end(v);
}
void
testTortureExecute (void)
{
bar(0, 0, 16LL);
return;
}
|