Index: lldb/test/Shell/SymbolFile/PDB/calling-conventions-arm.test =================================================================== --- /dev/null +++ lldb/test/Shell/SymbolFile/PDB/calling-conventions-arm.test @@ -0,0 +1,10 @@ +REQUIRES: system-windows, lld, (target-arm || target-aarch64) +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)(); +CHECK-DAG: int (*FuncFastCallPtr)(); +CHECK-DAG: int (*FuncVectorCallPtr)(); +CHECK-DAG: int (S::*FuncThisCallPtr)(); Index: lldb/test/Shell/SymbolFile/PDB/calling-conventions-x86.test =================================================================== --- lldb/test/Shell/SymbolFile/PDB/calling-conventions-x86.test +++ lldb/test/Shell/SymbolFile/PDB/calling-conventions-x86.test @@ -1,4 +1,4 @@ -REQUIRES: system-windows, lld +REQUIRES: system-windows, lld, (target-x86 || target-x86_64) 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