Index: src/x64/debug-x64.cc |
=================================================================== |
--- src/x64/debug-x64.cc (revision 2476) |
+++ src/x64/debug-x64.cc (working copy) |
@@ -80,6 +80,21 @@ |
masm->int3(); // UNIMPLEMENTED |
} |
+void BreakLocationIterator::ClearDebugBreakAtReturn() { |
+ // TODO(X64): Implement this when we start setting Debug breaks. |
+ UNIMPLEMENTED(); |
+} |
+ |
+bool BreakLocationIterator::IsDebugBreakAtReturn() { |
+ // TODO(X64): Implement this when we start setting Debug breaks. |
+ UNIMPLEMENTED(); |
+ return false; |
+} |
+ |
+void BreakLocationIterator::SetDebugBreakAtReturn() { |
+ UNIMPLEMENTED(); |
+} |
+ |
#endif // ENABLE_DEBUGGER_SUPPORT |
} } // namespace v8::internal |