You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clang_cc1 %s -w -emit-llvm -o -
|
|
|
|
float test(int X, ...) {
|
|
__builtin_va_list ap;
|
|
float F;
|
|
__builtin_va_start(ap, X);
|
|
F = __builtin_va_arg(ap, float);
|
|
return F;
|
|
}
|