Index: src/cfg.cc |
=================================================================== |
--- src/cfg.cc (revision 2643) |
+++ src/cfg.cc (working copy) |
@@ -230,6 +230,19 @@ |
} |
+void PositionInstr::Compile(MacroAssembler* masm) { |
+ if (FLAG_debug_info && pos_ != RelocInfo::kNoPosition) { |
+ masm->RecordStatementPosition(pos_); |
+ masm->RecordPosition(pos_); |
+ } |
+} |
+ |
+ |
+void MoveInstr::Compile(MacroAssembler* masm) { |
+ location()->Move(masm, value()); |
+} |
+ |
+ |
// The expression builder should not be used for declarations or statements. |
void ExpressionBuilder::VisitDeclaration(Declaration* decl) { UNREACHABLE(); } |