aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Compilation.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-03-02 19:59:07 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-03-02 19:59:07 +0000
commit3ede8d0a7d1813f678ccc6011a99a0834b1b6116 (patch)
treeb3b7f30fbc211ae8be23bb10fd4051e4f4368ba7 /lib/Driver/Compilation.cpp
parentbc0822bad87ac4d2dcac8e1b71960301656a2699 (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.cpp21
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;
+}