| 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 | |
| 11 | using namespace clang::driver; |
| 12 | |
| 13 | Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC) |
| 14 | : Name(_Name), ShortName(_ShortName), TheToolChain(TC) {} |
| 15 | |
| 16 | Tool::~Tool() {} |
| 17 | |