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
|
/*
va-arg-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#pragma disable_warning 85
#include <stdarg.h>
typedef unsigned long L;
f (L p0, L p1, L p2, L p3, L p4, L p5, L p6, L p7, L p8, ...)
{
va_list select;
va_start (select, p8);
if (va_arg (select, L) != 10)
ASSERT (0);
if (va_arg (select, L) != 11)
ASSERT (0);
if (va_arg (select, L) != 0)
ASSERT (0);
va_end (select);
}
void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
f (1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L, 11L, 0L);
return;
#endif
}
|