blob: 530a4284b4ecc876c81aee1de869bd9394e091bb [file] [log] [blame]
Stephen Hines176edba2014-12-01 14:53:08 -08001// RUN: %clang_cc1 -Wno-error=non-pod-varargs -triple i686-pc-win32 -fms-compatibility -emit-llvm -o - %s | FileCheck %s -check-prefix=X86 -check-prefix=CHECK
2// RUN: %clang_cc1 -Wno-error=non-pod-varargs -triple x86_64-pc-win32 -fms-compatibility -emit-llvm -o - %s | FileCheck %s -check-prefix=X64 -check-prefix=CHECK
3
4struct X {
5 X();
6 ~X();
7 int data;
8};
9
10void vararg(...);
11
12void test(X x) {
13 // CHECK-LABEL: define void @"\01?test@@YAXUX@@@Z"
14
15 // X86: %[[argmem:[^ ]*]] = alloca inalloca <{ %struct.X }>
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -070016 // X86: call void (<{ %struct.X }>*, ...) bitcast (void (...)* @"\01?vararg@@YAXZZ" to void (<{ %struct.X }>*, ...)*)(<{ %struct.X }>* inalloca %[[argmem]])
Stephen Hines176edba2014-12-01 14:53:08 -080017
18 // X64: alloca %struct.X
19
20 // X64: %[[agg:[^ ]*]] = alloca %struct.X
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070021 // X64: %[[valptr:[^ ]*]] = getelementptr %struct.X, %struct.X* %[[agg]], i32 0, i32 0
22 // X64: %[[val:[^ ]*]] = load i32, i32* %[[valptr]]
Pirama Arumuga Nainar33337ca2015-05-06 11:48:57 -070023 // X64: call void (...) @"\01?vararg@@YAXZZ"(i32 %[[val]])
Stephen Hines176edba2014-12-01 14:53:08 -080024
25 // CHECK-NOT: llvm.trap
26 vararg(x);
27 // CHECK: ret void
28}