blob: 0220ac862e68725da36f817ba0438f543cec9d51 [file] [log] [blame]
Tim Northover1711cc92013-06-21 23:05:33 +00001// RUN: %clang_cc1 -triple armv7-apple-ios -emit-llvm -o - %s | FileCheck %s
2struct Empty {};
3
4Empty emptyvar;
5
6int take_args(int a, ...) {
7 __builtin_va_list l;
8 __builtin_va_start(l, a);
9// CHECK: call void @llvm.va_start
10
11 emptyvar = __builtin_va_arg(l, Empty);
David Blaikiea953f282015-02-27 21:19:58 +000012// CHECK: load i8*, i8**
Tim Northover1711cc92013-06-21 23:05:33 +000013// CHECK-NOT: getelementptr
14// CHECK: [[EMPTY_PTR:%[a-zA-Z0-9._]+]] = bitcast i8* {{%[a-zA-Z0-9._]+}} to %struct.Empty*
15
16 // It's conceivable that EMPTY_PTR may not actually be a valid pointer
17 // (e.g. it's at the very bottom of the stack and the next page is
18 // invalid). This doesn't matter provided it's never loaded (there's no
19 // well-defined way to tell), but it becomes a problem if we do try to use it.
David Blaikiea953f282015-02-27 21:19:58 +000020// CHECK-NOT: load %struct.Empty, %struct.Empty* [[EMPTY_PTR]]
Tim Northover1711cc92013-06-21 23:05:33 +000021
22 int i = __builtin_va_arg(l, int);
David Blaikiea953f282015-02-27 21:19:58 +000023// CHECK: load i32, i32*
Tim Northover1711cc92013-06-21 23:05:33 +000024
25 __builtin_va_end(l);
26 return i;
27}