1 //===--- InterfaceStubs.cpp - Base InterfaceStubs Implementations C++ ---===//
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
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"
19 class LLVM_LIBRARY_VISIBILITY Merger
: public Tool
{
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