blob: 21039c6b0fa9b93a94a656ebd711ef05cce945b4 [file] [log] [blame]
// RUN: %llvmgcc -xc %s -w -c -o - | llc
// XFAIL: *
// See PR2452
#include <stdarg.h>
float test(int X, ...) {
va_list ap;
float F;
va_start(ap, X);
F = va_arg(ap, float);
return F;
}