blob: a85dc65ff04ddaedb7ddd912812b6c90ac1a5fe1 [file] [log] [blame]
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));