blob: 7142e822f16e593767af709a2706ccd88ec4bc19 [file] [log] [blame]
Nick Lewycky3fdcc6f2010-12-31 17:31:54 +00001//===--- Tool.cpp - Compilation Tools -------------------------------------===//
Daniel Dunbar2ba38ba2009-03-16 05:25:36 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "clang/Driver/Tool.h"
11
12using namespace clang::driver;
13
Stephen Hines176edba2014-12-01 14:53:08 -080014Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC,
15 ResponseFileSupport _ResponseSupport,
16 llvm::sys::WindowsEncodingMethod _ResponseEncoding,
17 const char *_ResponseFlag)
18 : Name(_Name), ShortName(_ShortName), TheToolChain(TC),
19 ResponseSupport(_ResponseSupport), ResponseEncoding(_ResponseEncoding),
20 ResponseFlag(_ResponseFlag) {}
Daniel Dunbar670b7f42009-03-17 22:07:31 +000021
Daniel Dunbar2ba38ba2009-03-16 05:25:36 +000022Tool::~Tool() {
23}