Index: src/mips/codegen-mips-inl.h |
=================================================================== |
--- src/mips/codegen-mips-inl.h (revision 4138) |
+++ src/mips/codegen-mips-inl.h (working copy) |
@@ -36,8 +36,32 @@ |
// Platform-specific inline functions. |
-void DeferredCode::Jump() { __ b(&entry_label_); } |
+void DeferredCode::Jump() { |
+ __ b(&entry_label_); |
+ __ nop(); |
+} |
+ |
+void Reference::GetValueAndSpill() { |
+ GetValue(); |
+} |
+ |
+ |
+void CodeGenerator::VisitAndSpill(Statement* statement) { |
+ Visit(statement); |
+} |
+ |
+ |
+void CodeGenerator::VisitStatementsAndSpill(ZoneList<Statement*>* statements) { |
+ VisitStatements(statements); |
+} |
+ |
+ |
+void CodeGenerator::LoadAndSpill(Expression* expression) { |
+ Load(expression); |
+} |
+ |
+ |
#undef __ |
} } // namespace v8::internal |