1 REQUIRES: system-windows, lld, (target-x86 || target-x86_64)
2 RUN: %build --compiler=clang-cl --arch=32 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp \
3 RUN: && lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix 32BIT-CHECK %s
4 RUN: %build --compiler=clang-cl --arch=64 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp \
5 RUN: && lldb-test symbols -dump-ast %t.exe | FileCheck --check-prefix 64BIT-CHECK %s
7 64BIT-CHECK: Module: {{.*}}
8 64BIT-CHECK-DAG: int (*FuncCCallPtr)();
9 64BIT-CHECK-DAG: int (*FuncStdCallPtr)();
10 64BIT-CHECK-DAG: int (*FuncFastCallPtr)();
11 64BIT-CHECK-DAG: int (*FuncVectorCallPtr)() __attribute__((vectorcall));
12 64BIT-CHECK-DAG: int (S::*FuncThisCallPtr)();
14 32BIT-CHECK: Module: {{.*}}
15 32BIT-CHECK-DAG: int (*FuncCCallPtr)();
16 32BIT-CHECK-DAG: int (*FuncStdCallPtr)() __attribute__((stdcall));
17 32BIT-CHECK-DAG: int (*FuncFastCallPtr)() __attribute__((fastcall));
18 32BIT-CHECK-DAG: int (*FuncVectorCallPtr)() __attribute__((vectorcall));
19 32BIT-CHECK-DAG: int (S::*FuncThisCallPtr)() __attribute__((thiscall));