2 920501-8.c from the execute part of the gcc torture suite.
11 // TODO: Enable when double is fully supported!
20 va (int a
, double b
, int c
, ...)
23 int d
, e
, f
, g
, h
, i
, j
, k
, l
, m
, n
, o
, p
;
41 "%d,%f,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d",
42 a
,b
,c
,d
,e
,f
,g
,h
,i
,j
,k
,l
,m
,n
,o
,p
);
48 testTortureExecute (void)
51 va (1, 1.0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15);
52 if (strcmp ("1,1.000000,2,3,4,5,6,7,8,9,10,11,12,13,14,15", buf
))