diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-02 19:59:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-02 19:59:07 +0000 |
commit | 3ede8d0a7d1813f678ccc6011a99a0834b1b6116 (patch) | |
tree | b3b7f30fbc211ae8be23bb10fd4051e4f4368ba7 /lib/Driver/Compilation.cpp | |
parent | bc0822bad87ac4d2dcac8e1b71960301656a2699 (diff) |
Stub out some structure for C++ driver.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65867 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Compilation.cpp')
-rw-r--r-- | lib/Driver/Compilation.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/Driver/Compilation.cpp b/lib/Driver/Compilation.cpp new file mode 100644 index 0000000000..7f3454bcd8 --- /dev/null +++ b/lib/Driver/Compilation.cpp @@ -0,0 +1,21 @@ +//===--- 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; + +Compilation::Compilation() { +} + +Compilation::~Compilation() { +} + +int Compilation::Execute() const { + return 0; +} |