C++程序  |  14行  |  197 B

// RUN: %llvmgcc -xc %s -w -S -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;
}