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

Unified Diff: runtime/vm/assembler_x64.cc

Issue 11412106: Support VTune's JIT interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: introduce CodeObserver interface Created 8 years, 1 month 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/assembler_x64.cc
diff --git a/runtime/vm/assembler_x64.cc b/runtime/vm/assembler_x64.cc
index 57ffd01ab83883ee4d981bacc8095f40305124c8..a04477cc8f9f1458c4149691a7205ada993da8b8 100644
--- a/runtime/vm/assembler_x64.cc
+++ b/runtime/vm/assembler_x64.cc
@@ -1799,8 +1799,8 @@ void Assembler::Bind(Label* label) {
void Assembler::EnterFrame(intptr_t frame_size) {
- if (prolog_offset_ == -1) {
- prolog_offset_ = CodeSize();
+ if (prologue_offset_ == -1) {
+ prologue_offset_ = CodeSize();
}
pushq(RBP);
movq(RBP, RSP);
« no previous file with comments | « runtime/vm/assembler_x64.h ('k') | runtime/vm/dart.h » ('j') | runtime/vm/dart.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698