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