You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
509 B
11 lines
509 B
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));
|