diff options
Diffstat (limited to 'lib/Driver/Action.cpp')
-rw-r--r-- | lib/Driver/Action.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Driver/Action.cpp b/lib/Driver/Action.cpp new file mode 100644 index 0000000000..d9bfce1ad3 --- /dev/null +++ b/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() {} |