blob: 7f3454bcd82f76b4383bd74bf6cb9353b853230e [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"
11using namespace clang;
12
13Compilation::Compilation() {
14}
15
16Compilation::~Compilation() {
17}
18
19int Compilation::Execute() const {
20 return 0;
21}