Chromium Code Reviews

Unified Diff: src/IceGlobalContext.cpp

Issue 1349833005: Improve use of CfgLocalAllocator and introduce containers that use it. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « src/IceDefs.h ('k') | src/IceInst.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceGlobalContext.cpp
diff --git a/src/IceGlobalContext.cpp b/src/IceGlobalContext.cpp
index 7b7183d5540852496e2ff9a1b0b256a9635aa61f..c7497da83df5a8978fdcdbfdd1fba6045acb1c70 100644
--- a/src/IceGlobalContext.cpp
+++ b/src/IceGlobalContext.cpp
@@ -722,10 +722,8 @@ GlobalContext::~GlobalContext() {
llvm::DeleteContainerPointers(AllThreadContexts);
LockedPtr<DestructorArray> Dtors = getDestructors();
// Destructors are invoked in the opposite object construction order.
- for (auto DtorIter = Dtors->crbegin(); DtorIter != Dtors->crend();
- ++DtorIter) {
- (*DtorIter)();
- }
+ for (const auto &Dtor : reverse_range(*Dtors))
+ Dtor();
}
// TODO(stichnot): Consider adding thread-local caches of constant pool entries
« no previous file with comments | « src/IceDefs.h ('k') | src/IceInst.h » ('j') | no next file with comments »

Powered by Google App Engine