[docs] Fix build-docs.sh
[llvm-project.git] / clang / lib / Driver / ToolChains / InterfaceStubs.h
blob4afa73701a4c5f03818d3c82ac6e04cdc00b1a2e
1 //===--- InterfaceStubs.cpp - Base InterfaceStubs Implementations C++ ---===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_IFS_H
10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_IFS_H
12 #include "clang/Driver/Tool.h"
13 #include "clang/Driver/ToolChain.h"
15 namespace clang {
16 namespace driver {
17 namespace tools {
18 namespace ifstool {
19 class LLVM_LIBRARY_VISIBILITY Merger : public Tool {
20 public:
21 Merger(const ToolChain &TC) : Tool("IFS::Merger", "llvm-ifs", TC) {}
23 bool hasIntegratedCPP() const override { return false; }
24 bool isLinkJob() const override { return false; }
26 void ConstructJob(Compilation &C, const JobAction &JA,
27 const InputInfo &Output, const InputInfoList &Inputs,
28 const llvm::opt::ArgList &TCArgs,
29 const char *LinkingOutput) const override;
31 } // end namespace ifstool
32 } // end namespace tools
33 } // end namespace driver
34 } // end namespace clang
36 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_IFS_H