Daniel Dunbar | 63c4da9 | 2009-03-02 19:59:07 +0000 | [diff] [blame] | 1 | //===--- 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" |
| 11 | using namespace clang; |
| 12 | |
| 13 | Compilation::Compilation() { |
| 14 | } |
| 15 | |
| 16 | Compilation::~Compilation() { |
| 17 | } |
| 18 | |
| 19 | int Compilation::Execute() const { |
| 20 | return 0; |
| 21 | } |