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

Unified Diff: runtime/vm/debugger_x64.cc

Issue 13983016: Support debugger API on ARM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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
Index: runtime/vm/debugger_x64.cc
===================================================================
--- runtime/vm/debugger_x64.cc (revision 21855)
+++ runtime/vm/debugger_x64.cc (working copy)
@@ -49,7 +49,7 @@
code[10] = 0x41;
code[11] = 0xff;
code[12] = 0xd3;
- CPU::FlushICache(pc_, 5);
+ CPU::FlushICache(pc_ - 13, 13);
}
@@ -69,7 +69,7 @@
code[10] = 0x90; // nop
code[11] = 0x90; // nop
code[12] = 0x90; // nop
- CPU::FlushICache(pc_, 5);
+ CPU::FlushICache(pc_ - 13, 13);
}
} // namespace dart

Powered by Google App Engine
This is Rietveld 408576698