brintos

brintos / llvm-project-archived public Read only

0
0
Text · 779 B · 8b0b5b6 Raw
17 lines · plain
1REQUIRES: target-windows, lld, (target-arm || target-aarch64)2 3RUN: %build --compiler=clang-cl --arch=32 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp4RUN: lldb-test symbols -dump-ast %t.exe | FileCheck %s5RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck %s6 7RUN: %build --compiler=clang-cl --arch=64 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp8RUN: lldb-test symbols -dump-ast %t.exe | FileCheck %s9RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols -dump-ast %t.exe | FileCheck %s10 11CHECK: Module: {{.*}}12CHECK-DAG: int (*FuncCCallPtr)();13CHECK-DAG: int (*FuncStdCallPtr)();14CHECK-DAG: int (*FuncFastCallPtr)();15CHECK-DAG: int (*FuncVectorCallPtr)();16CHECK-DAG: int (S::*FuncThisCallPtr)();17