blob: f849c2beac288bb6bd0b1cc927dfbcbd4800f34c [file] [log] [blame]
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00001//===--- Tools.cpp - Tools Implementations ------------------------------*-===//
2//
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 "Tools.h"
11
12using namespace clang::driver;
13using namespace clang::driver::tools;
14
15void Clang::ConstructJob(Compilation &C, const JobAction &JA,
16 InputInfo &Output, InputInfoList &Inputs,
17 const ArgList &TCArgs,
18 const char *LinkingOutput) const {
19
20}
21
22void gcc::Preprocess::ConstructJob(Compilation &C, const JobAction &JA,
23 InputInfo &Output, InputInfoList &Inputs,
24 const ArgList &TCArgs,
25 const char *LinkingOutput) const {
26
27}
28
29void gcc::Precompile::ConstructJob(Compilation &C, const JobAction &JA,
30 InputInfo &Output, InputInfoList &Inputs,
31 const ArgList &TCArgs,
32 const char *LinkingOutput) const {
33
34}
35
36void gcc::Compile::ConstructJob(Compilation &C, const JobAction &JA,
37 InputInfo &Output, InputInfoList &Inputs,
38 const ArgList &TCArgs,
39 const char *LinkingOutput) const {
40
41}
42
43void gcc::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
44 InputInfo &Output, InputInfoList &Inputs,
45 const ArgList &TCArgs,
46 const char *LinkingOutput) const {
47
48}
49
50void gcc::Link::ConstructJob(Compilation &C, const JobAction &JA,
51 InputInfo &Output, InputInfoList &Inputs,
52 const ArgList &TCArgs,
53 const char *LinkingOutput) const {
54
55}