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

Unified Diff: runtime/vm/code_patcher_x64.cc

Issue 1174673003: Fix 64-bit build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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/code_patcher_arm64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/code_patcher_x64.cc
diff --git a/runtime/vm/code_patcher_x64.cc b/runtime/vm/code_patcher_x64.cc
index 7a53e66eb810cd23c9618038aae3bde9acd4c8e8..1f3f8e18aae25f6667fa7818dbef9e6f2b4d28f1 100644
--- a/runtime/vm/code_patcher_x64.cc
+++ b/runtime/vm/code_patcher_x64.cc
@@ -121,7 +121,7 @@ class PoolPointerCall : public ValueObject {
}
uword Target() const {
- return reinterpret_cast<uword>(object_pool_.RawValueAt(pp_index()));
+ return object_pool_.RawValueAt(pp_index());
}
void SetTarget(uword target) const {
« no previous file with comments | « runtime/vm/code_patcher_arm64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698