Merge tag 'for-5.3-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[linux-2.6-block.git] / tools / build / feature / test-clang.cpp
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
c7fb4f62
WN
2#include "clang/Basic/VirtualFileSystem.h"
3#include "clang/Driver/Driver.h"
4#include "clang/Frontend/TextDiagnosticPrinter.h"
5#include "llvm/ADT/IntrusiveRefCntPtr.h"
6#include "llvm/Support/ManagedStatic.h"
7#include "llvm/Support/raw_ostream.h"
8
9using namespace clang;
10using namespace clang::driver;
11
12int main()
13{
14 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
15 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
16
17 DiagnosticsEngine Diags(DiagID, &*DiagOpts);
18 Driver TheDriver("test", "bpf-pc-linux", Diags);
19
20 llvm::llvm_shutdown();
21 return 0;
22}