blob: cbc9151ec63172c655429e8bd4eb347a9fd3b650 [file] [log] [blame]
Eric Christopherb0257342011-07-26 21:42:32 +00001// RUN: %clang_cc1 %s -w -emit-llvm -o -
2
3float test(int X, ...) {
4 __builtin_va_list ap;
5 float F;
6 __builtin_va_start(ap, X);
7 F = __builtin_va_arg(ap, float);
8 return F;
9}