diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-03-12 18:40:18 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-12 18:40:18 +0000 |
| commit | f479c1293ea4a3eda2e125cbfe3b99e6b7456eaa (patch) | |
| tree | 96ded23827c10b35a262cb24a4ba2fdd3541a29b /clang/lib/Driver/Action.cpp | |
| parent | c92208333f2799b710a5d870fd855354ce42e5e6 (diff) | |
| download | bcm5719-llvm-f479c1293ea4a3eda2e125cbfe3b99e6b7456eaa.tar.gz bcm5719-llvm-f479c1293ea4a3eda2e125cbfe3b99e6b7456eaa.zip | |
Driver: Add majority of driver-driver implementation.
- Compare to driverdriver.c if bored; not completely fair since the
driver gets a bit more code in other places to handle binding archs
(for Xarch) but not completely unfair either.
Fear not, extra Action classes will have a happy home for their
vtables soon.
llvm-svn: 66817
Diffstat (limited to 'clang/lib/Driver/Action.cpp')
| -rw-r--r-- | clang/lib/Driver/Action.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/clang/lib/Driver/Action.cpp b/clang/lib/Driver/Action.cpp new file mode 100644 index 00000000000..d9bfce1ad3e --- /dev/null +++ b/clang/lib/Driver/Action.cpp @@ -0,0 +1,15 @@ +//===--- Action.cpp - Abstract compilation steps ------------------------*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "clang/Driver/Action.h" + +#include <cassert> +using namespace clang::driver; + +Action::~Action() {} |

