llvm-project/clang/lib/Driver/Compilation.cpp
Daniel Dunbar b2cd66bf4d Driver: Sink Driver/Compilation into clang::driver namespace.
- Add OptTable instance to Driver.

llvm-svn: 66063
2009-03-04 20:49:20 +00:00

22 lines
526 B
C++

//===--- Compilation.cpp - Compilation Task Implementation --------------*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "clang/Driver/Compilation.h"
using namespace clang::driver;
Compilation::Compilation() {
}
Compilation::~Compilation() {
}
int Compilation::Execute() const {
return 0;
}