]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/build/feature/test-clang.cpp
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.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}