aboutsummaryrefslogtreecommitdiff
path: root/unittests/SymbolFile/PDB/Inputs/test-pdb.cpp
blob: c9bf057cfbfbe610e545d41114adc50f0e458542 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Compile with "cl /c /Zi /GR- test-pdb.cpp"
// Link with "link test-pdb.obj /debug /nodefaultlib /entry:main /out:test-pdb.exe"

#include "test-pdb.h"

int __cdecl _purecall(void)
{
    return 0;
}

int
main(int argc, char **argv)
{
    return foo(argc) + bar(argc);
}