blob: 06073305e09b4379f398046f247356c63f58ae36 [file] [log] [blame]
Evan Cheng75fbed12008-06-12 21:23:38 +00001// RUN: %llvmgcc -xc %s -w -c -o - | llc
Matthijs Kooijman2035efd2008-06-13 16:52:35 +00002// XFAIL: *
3// See PR2425
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004
5#include <stdarg.h>
6
7float test(int X, ...) {
8 va_list ap;
9 float F;
10 va_start(ap, X);
11 F = va_arg(ap, float);
12 return F;
13}