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 | 544ecd14b614bfb8c16cc9793db9e0d949c91f2e (patch) | |
tree | 360ea268449bd857a8b0ef652c302ca35f08fbde /clang/lib/Driver/Compilation.cpp | |
parent | b3b675c35efa92cda6075b709d2da8fc9120716e (diff) | |
download | bcm5719-llvm-544ecd14b614bfb8c16cc9793db9e0d949c91f2e.tar.gz bcm5719-llvm-544ecd14b614bfb8c16cc9793db9e0d949c91f2e.zip |
Stub out some structure for C++ driver.
llvm-svn: 65867
Diffstat (limited to 'clang/lib/Driver/Compilation.cpp')
-rw-r--r-- | clang/lib/Driver/Compilation.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/clang/lib/Driver/Compilation.cpp b/clang/lib/Driver/Compilation.cpp new file mode 100644 index 00000000000..7f3454bcd82 --- /dev/null +++ b/clang/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; +} |