calling-conventions.test 509 Bytes
REQUIRES: system-windows, lld
RUN: %build --compiler=clang-cl --arch=32 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp
RUN: lldb-test symbols -dump-ast %t.exe | FileCheck %s

CHECK: Module: {{.*}}
CHECK-DAG: int (*FuncCCallPtr)();
CHECK-DAG: int (*FuncStdCallPtr)() __attribute__((stdcall));
CHECK-DAG: int (*FuncFastCallPtr)() __attribute__((fastcall));
CHECK-DAG: int (*FuncVectorCallPtr)() __attribute__((vectorcall));
CHECK-DAG: int (S::*FuncThisCallPtr)() __attribute__((thiscall));