summaryrefslogtreecommitdiffstats
path: root/lib/Driver/Tool.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-03-16 05:25:36 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-03-16 05:25:36 +0000
commit2ba38ba9a18b8ec88e2509fad622eeec01562769 (patch)
tree203af0486f9379b954257556f576bc49dd6dd795 /lib/Driver/Tool.cpp
parenta1ead48a4e9961c7eb22592310c7e9c30cb56794 (diff)
Driver: Sketch Tool and ToolChain classes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67036 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tool.cpp')
-rw-r--r--lib/Driver/Tool.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Driver/Tool.cpp b/lib/Driver/Tool.cpp
new file mode 100644
index 0000000000..52c047b8dd
--- /dev/null
+++ b/lib/Driver/Tool.cpp
@@ -0,0 +1,15 @@
+//===--- Tool.cpp - Compilation Tools -----------------------------------*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "clang/Driver/Tool.h"
+
+using namespace clang::driver;
+
+Tool::~Tool() {
+}