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

Unified Diff: runtime/vm/stack_frame_x64.cc

Issue 9429055: Required rename on x64 platform. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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/instructions_x64_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stack_frame_x64.cc
diff --git a/runtime/vm/stack_frame_x64.cc b/runtime/vm/stack_frame_x64.cc
index 050ef2ce24484162a95b68b1f640f3b81e606aa7..27ffa6ddd21347fc3e33486efec992ac73891bf0 100644
--- a/runtime/vm/stack_frame_x64.cc
+++ b/runtime/vm/stack_frame_x64.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@@ -21,8 +21,8 @@ static const int kSpOffsetFromPreviousFp = 2 * kWordSize;
static bool ExitedFromStub(uword exit_marker) {
if (exit_marker != 0) {
uword caller_pc = *reinterpret_cast<uword*>(exit_marker + kWordSize);
- uword call_instr_pc = caller_pc - Call::InstructionLength();
- uword call_target = Call(call_instr_pc).TargetAddress();
+ uword call_instr_pc = caller_pc - CallPattern::InstructionLength();
+ uword call_target = CallPattern(call_instr_pc).TargetAddress();
return StubCode::InStubCallToRuntimeStubCode(call_target);
}
return false;
« no previous file with comments | « runtime/vm/instructions_x64_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698