diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-18 06:00:36 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-18 06:00:36 +0000 |
commit | 47ac7d27c44bd64a7d0fc03d4babc196cf2b8230 (patch) | |
tree | 5ea4435becaa49039db7f92a2bd21763e3ba1068 /lib/Driver/Tools.cpp | |
parent | 432eeecd1dbca600d969b5f258b9ebd5452f37ac (diff) |
Driver: Stub out Tool::ConstructJob.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67169 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tools.cpp')
-rw-r--r-- | lib/Driver/Tools.cpp | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp new file mode 100644 index 0000000000..f849c2beac --- /dev/null +++ b/lib/Driver/Tools.cpp @@ -0,0 +1,55 @@ +//===--- Tools.cpp - Tools Implementations ------------------------------*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "Tools.h" + +using namespace clang::driver; +using namespace clang::driver::tools; + +void Clang::ConstructJob(Compilation &C, const JobAction &JA, + InputInfo &Output, InputInfoList &Inputs, + const ArgList &TCArgs, + const char *LinkingOutput) const { + +} + +void gcc::Preprocess::ConstructJob(Compilation &C, const JobAction &JA, + InputInfo &Output, InputInfoList &Inputs, + const ArgList &TCArgs, + const char *LinkingOutput) const { + +} + +void gcc::Precompile::ConstructJob(Compilation &C, const JobAction &JA, + InputInfo &Output, InputInfoList &Inputs, + const ArgList &TCArgs, + const char *LinkingOutput) const { + +} + +void gcc::Compile::ConstructJob(Compilation &C, const JobAction &JA, + InputInfo &Output, InputInfoList &Inputs, + const ArgList &TCArgs, + const char *LinkingOutput) const { + +} + +void gcc::Assemble::ConstructJob(Compilation &C, const JobAction &JA, + InputInfo &Output, InputInfoList &Inputs, + const ArgList &TCArgs, + const char *LinkingOutput) const { + +} + +void gcc::Link::ConstructJob(Compilation &C, const JobAction &JA, + InputInfo &Output, InputInfoList &Inputs, + const ArgList &TCArgs, + const char *LinkingOutput) const { + +} |