1 // RUN: %clang_cc1 -triple arm64-apple-ios -target-abi darwinpcs -emit-llvm -o - %s | FileCheck %s
6 int take_args(int a
, ...) {
8 __builtin_va_start(l
, a
);
9 // CHECK: call void @llvm.va_start
11 emptyvar
= __builtin_va_arg(l
, Empty
);
12 // CHECK: load ptr, ptr
13 // CHECK-NOT: getelementptr
15 // It's conceivable that EMPTY_PTR may not actually be a valid pointer
16 // (e.g. it's at the very bottom of the stack and the next page is
17 // invalid). This doesn't matter provided it's never loaded (there's no
18 // well-defined way to tell), but it becomes a problem if we do try to use it.
19 // CHECK-NOT: load %struct.Empty, ptr {{%[a-zA-Z0-9._]+}}
21 int i
= __builtin_va_arg(l
, int);
22 // CHECK: va_arg ptr {{%[a-zA-Z0-9._]+}}, i32