blob: a636e2dbac323222c9df238712600a3944314531 [file] [log] [blame]
Daniel Dunbar63c4da92009-03-02 19:59:07 +00001//===--- Compilation.cpp - Compilation Task Implementation --------------*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "clang/Driver/Compilation.h"
Daniel Dunbard6f0e372009-03-04 20:49:20 +000011using namespace clang::driver;
Daniel Dunbar63c4da92009-03-02 19:59:07 +000012
13Compilation::Compilation() {
14}
15
16Compilation::~Compilation() {
17}
18
19int Compilation::Execute() const {
20 return 0;
21}