e23c1b1f1b91211bbfa8f5a66876ea817c3f0462
[sfrench/cifs-2.6.git] / tools / build / feature / test-clang.cpp
1 #include "clang/Basic/VirtualFileSystem.h"
2 #include "clang/Driver/Driver.h"
3 #include "clang/Frontend/TextDiagnosticPrinter.h"
4 #include "llvm/ADT/IntrusiveRefCntPtr.h"
5 #include "llvm/Support/ManagedStatic.h"
6 #include "llvm/Support/raw_ostream.h"
7
8 using namespace clang;
9 using namespace clang::driver;
10
11 int main()
12 {
13         IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
14         IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
15
16         DiagnosticsEngine Diags(DiagID, &*DiagOpts);
17         Driver TheDriver("test", "bpf-pc-linux", Diags);
18
19         llvm::llvm_shutdown();
20         return 0;
21 }