2010-12-31 20:31:54 +03:00
|
|
|
//===--- Tool.cpp - Compilation Tools -------------------------------------===//
|
2009-03-16 08:25:36 +03:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Driver/Tool.h"
|
|
|
|
|
|
|
|
using namespace clang::driver;
|
|
|
|
|
2010-05-22 04:37:18 +04:00
|
|
|
Tool::Tool(const char *_Name, const char *_ShortName,
|
|
|
|
const ToolChain &TC) : Name(_Name), ShortName(_ShortName),
|
|
|
|
TheToolChain(TC)
|
|
|
|
{
|
2009-03-18 01:07:31 +03:00
|
|
|
}
|
|
|
|
|
2009-03-16 08:25:36 +03:00
|
|
|
Tool::~Tool() {
|
|
|
|
}
|