teak-llvm/clang/lib/Driver/Job.cpp
Daniel Dunbar 313c291269 Driver: Add simple Job classes, simple wrappers for information about
what processes to execute during a compilation.

llvm-svn: 66985
2009-03-13 23:36:33 +00:00

24 lines
663 B
C++

//===--- Job.cpp - Command to Execute -----------------------------------*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "clang/Driver/Job.h"
#include <cassert>
using namespace clang::driver;
Job::~Job() {}
Command::Command(const char *_Executable, const ArgStringList &_Argv)
: Job(CommandClass), Executable(_Executable), Argv(_Argv) {
}
PipedJob::PipedJob() : Job(PipedJobClass) {}
JobList::JobList() : Job(JobListClass) {}