Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index e11dfabb11f8fa5e27d06477808745243159bce3..ebc1e43bf68b971522772a110861d6e0896e1e56 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -78,7 +78,7 @@ class LInstruction: public ZoneObject { |
bool HasEnvironment() const { |
UNIMPLEMENTED(); |
- return NULL; |
+ return false; |
} |
virtual void PrintTo(StringStream* stream) const { UNIMPLEMENTED(); } |
@@ -213,15 +213,13 @@ class LOsrEntry: public LInstruction { |
class LChunk: public ZoneObject { |
public: |
- explicit LChunk(CompilationInfo* info, HGraph* graph) { } |
+ explicit LChunk(HGraph* graph) { } |
HGraph* graph() const { |
UNIMPLEMENTED(); |
return NULL; |
} |
- CompilationInfo* info() const { return NULL; } |
- |
const ZoneList<LPointerMap*>* pointer_maps() const { |
UNIMPLEMENTED(); |
return NULL; |
@@ -271,6 +269,11 @@ class LChunk: public ZoneObject { |
void MarkEmptyBlocks() { UNIMPLEMENTED(); } |
+ CompilationInfo* info() const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+ } |
+ |
#ifdef DEBUG |
void Verify() { UNIMPLEMENTED(); } |
#endif |
@@ -279,7 +282,7 @@ class LChunk: public ZoneObject { |
class LChunkBuilder BASE_EMBEDDED { |
public: |
- LChunkBuilder(CompilationInfo* info, HGraph* graph, LAllocator* allocator) { } |
+ LChunkBuilder(CompilationInfo*&, HGraph* graph, LAllocator* allocator) { } |
// Build the sequence for the graph. |
LChunk* Build() { |