diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-03-03 23:44:07 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-03-03 23:44:07 +0000 |
commit | 923a25e9573507bffd46b2e7dcc1ba6f833d64fd (patch) | |
tree | 8669474b67b44018f696a41bedf854b6c19c5195 /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | cd3d25a25fbf18e7d2ecd325a50dbf70cdb2d181 (diff) | |
download | bcm5719-llvm-923a25e9573507bffd46b2e7dcc1ba6f833d64fd.tar.gz bcm5719-llvm-923a25e9573507bffd46b2e7dcc1ba6f833d64fd.zip |
Revert "unique_ptrify LiveRange::segmentSet"
GCC 4.7 *shakes fist* (doesn't have std::map::emplace... )
This reverts commit r231168.
llvm-svn: 231173
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index e1aee4d898a..d60b0b1a504 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -743,6 +743,7 @@ void LiveRange::flushSegmentSet() { segments.empty() && "segment set can be used only initially before switching to the array"); segments.append(segmentSet->begin(), segmentSet->end()); + delete segmentSet; segmentSet = nullptr; verify(); } |