summaryrefslogtreecommitdiff
path: root/lit/SymbolFile/PDB/calling-conventions.test
diff options
context:
space:
mode:
Diffstat (limited to 'lit/SymbolFile/PDB/calling-conventions.test')
-rw-r--r--lit/SymbolFile/PDB/calling-conventions.test10
1 files changed, 0 insertions, 10 deletions
diff --git a/lit/SymbolFile/PDB/calling-conventions.test b/lit/SymbolFile/PDB/calling-conventions.test
deleted file mode 100644
index a85dc65ff04d..000000000000
--- a/lit/SymbolFile/PDB/calling-conventions.test
+++ /dev/null
@@ -1,10 +0,0 @@
-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));