mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-30 00:38:54 -04:00
56 lines
2.0 KiB
C++
56 lines
2.0 KiB
C++
//===--- 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 {
|
|
|
|
}
|