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

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

Issue 2452403003: Changed statement ZoneList to a ZoneChunkList
Patch Set: Created 4 years, 2 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/crankshaft/lithium.h ('k') | src/crankshaft/mips/lithium-codegen-mips.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/crankshaft/lithium-allocator.h
diff --git a/src/crankshaft/lithium-allocator.h b/src/crankshaft/lithium-allocator.h
index d28ad7f9e789cf0ecb68cf8615eff77a7a15337a..c43410fb4cb6b8091f3596ef1d872d6ec7fe62e2 100644
--- a/src/crankshaft/lithium-allocator.h
+++ b/src/crankshaft/lithium-allocator.h
@@ -118,7 +118,7 @@ class LifetimePosition {
// Representation of the non-empty interval [start,end[.
-class UseInterval: public ZoneObject {
+class UseInterval : public ZoneObject {
public:
UseInterval(LifetimePosition start, LifetimePosition end)
: start_(start), end_(end), next_(NULL) {
@@ -157,7 +157,7 @@ class UseInterval: public ZoneObject {
};
// Representation of a use position.
-class UsePosition: public ZoneObject {
+class UsePosition : public ZoneObject {
public:
UsePosition(LifetimePosition pos, LOperand* operand, LOperand* hint);
@@ -187,7 +187,7 @@ class UsePosition: public ZoneObject {
// Representation of SSA values' live ranges as a collection of (continuous)
// intervals over the instruction ordering.
-class LiveRange: public ZoneObject {
+class LiveRange : public ZoneObject {
public:
static const int kInvalidAssignment = 0x7fffffff;
« no previous file with comments | « src/crankshaft/lithium.h ('k') | src/crankshaft/mips/lithium-codegen-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698