summaryrefslogtreecommitdiffstats
path: root/lib/Driver/Action.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-03-11 18:04:58 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-03-11 18:04:58 +0000
commit32c1a2ae8b31f32e478c8e504ed81db8c8d25713 (patch)
tree2df7472fb925e7b49da562fb262bd54c92849eac /lib/Driver/Action.cpp
parentfd48cb31d409cb1f8e1f119426965e498652e2d1 (diff)
Driver: Free Action objects.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98263 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Action.cpp')
-rw-r--r--lib/Driver/Action.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Driver/Action.cpp b/lib/Driver/Action.cpp
index 62434893f9..b9a3306d53 100644
--- a/lib/Driver/Action.cpp
+++ b/lib/Driver/Action.cpp
@@ -13,8 +13,10 @@
using namespace clang::driver;
Action::~Action() {
- // FIXME: Free the inputs. The problem is that BindArchAction shares
- // inputs; so we can't just walk the inputs.
+ if (OwnsInputs) {
+ for (iterator it = begin(), ie = end(); it != ie; ++it)
+ delete *it;
+ }
}
const char *Action::getClassName(ActionClass AC) {