Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(616)

Unified Diff: src/lithium-allocator-inl.h

Issue 17553004: Fix zone usage within LAllocator. (Closed) Base URL: git@github.com:v8/v8.git@master
Patch Set: Rebased on https://codereview.chromium.org/18022002 Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/lithium-allocator.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lithium-allocator-inl.h
diff --git a/src/lithium-allocator-inl.h b/src/lithium-allocator-inl.h
index a6d053aa72c2bf553c258b507fea6808d239121e..8cca19b2efa738c927ed51156faa24373ecd1e49 100644
--- a/src/lithium-allocator-inl.h
+++ b/src/lithium-allocator-inl.h
@@ -148,14 +148,13 @@ void UseIterator::Advance() {
void LAllocator::SetLiveRangeAssignedRegister(
LiveRange* range,
int reg,
- RegisterKind register_kind,
- Zone* zone) {
+ RegisterKind register_kind) {
if (register_kind == DOUBLE_REGISTERS) {
assigned_double_registers_->Add(reg);
} else {
assigned_registers_->Add(reg);
}
- range->set_assigned_register(reg, register_kind, zone);
+ range->set_assigned_register(reg, register_kind, chunk()->zone());
}
« no previous file with comments | « src/lithium-allocator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698