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 | 1a093d204979b07e68d6fa52bdd05f06ea8fc199 (patch) | |
tree | e199f993bd0d055457ab9932557a9a5cc0c14a94 /clang/lib/Driver/Tools.cpp | |
parent | 0f62e98d85c512295bcffbc4a8bf6437dba91ab3 (diff) | |
download | bcm5719-llvm-1a093d204979b07e68d6fa52bdd05f06ea8fc199.tar.gz bcm5719-llvm-1a093d204979b07e68d6fa52bdd05f06ea8fc199.zip |
Driver: Stub out Tool::ConstructJob.
llvm-svn: 67169
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp new file mode 100644 index 00000000000..f849c2beac2 --- /dev/null +++ b/clang/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 { + +} |