| 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;
|
|
|
|
|