[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / llvm-symbolizer / pdb / Inputs / test.cpp
blobe1ac50f2e820f014d12508fcbe5ebb9c8099b40b
1 // To generate the corresponding EXE/PDB, run:
2 // cl /Zi test.cpp
3 // To generate the PDB with column numbers, run:
4 // clang-cl /Zi -gcolumn-info test.cpp
6 namespace NS {
7 struct Foo {
8 void bar() {}
9 };
12 void foo() {
15 static void private_symbol() {
18 int main() {
19 foo();
21 NS::Foo f;
22 f.bar();
23 private_symbol();
26 extern "C" {
27 void __cdecl foo_cdecl() {}
28 void __stdcall foo_stdcall() {}
29 void __fastcall foo_fastcall() {}
30 void __vectorcall foo_vectorcall() {}