/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/lib/Driver/Tool.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | //===--- Tool.cpp - Compilation Tools -------------------------------------===// |
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 | | //===----------------------------------------------------------------------===// |
8 | | |
9 | | #include "clang/Driver/Tool.h" |
10 | | #include "clang/Driver/InputInfo.h" |
11 | | |
12 | | using namespace clang::driver; |
13 | | |
14 | | Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC) |
15 | 56.1k | : Name(_Name), ShortName(_ShortName), TheToolChain(TC) {} |
16 | | |
17 | 56.1k | Tool::~Tool() { |
18 | 56.1k | } |
19 | | |
20 | | void Tool::ConstructJobMultipleOutputs(Compilation &C, const JobAction &JA, |
21 | | const InputInfoList &Outputs, |
22 | | const InputInfoList &Inputs, |
23 | | const llvm::opt::ArgList &TCArgs, |
24 | 0 | const char *LinkingOutput) const { |
25 | 0 | assert(Outputs.size() == 1 && "Expected only one output by default!"); |
26 | 0 | ConstructJob(C, JA, Outputs.front(), Inputs, TCArgs, LinkingOutput); |
27 | 0 | } |