Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(411)

Unified Diff: runtime/vm/service.cc

Issue 2636443004: Make rewind work on DBC (Closed)
Patch Set: Code Review Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | runtime/vm/simulator_dbc.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service.cc
diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
index d0fa94bfbd6f5c9059692243ecc17fb45e9b61da..855229f3de76d26da70ee24e8f128cfbe46cc013 100644
--- a/runtime/vm/service.cc
+++ b/runtime/vm/service.cc
@@ -3044,13 +3044,6 @@ static bool Resume(Thread* thread, JSONStream* js) {
if (step_param != NULL) {
step = EnumMapper(step_param, step_enum_names, step_enum_values);
}
-#if defined(TARGET_ARCH_DBC)
- if (step == Debugger::kStepRewind) {
- js->PrintError(kCannotResume,
- "Rewind not yet implemented on this architecture");
- return true;
- }
-#endif
intptr_t frame_index = 1;
const char* frame_index_param = js->LookupParam("frameIndex");
if (frame_index_param != NULL) {
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | runtime/vm/simulator_dbc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698