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

Unified Diff: runtime/vm/code_patcher_arm64.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 | « no previous file | runtime/vm/code_patcher_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/code_patcher_arm64.cc
diff --git a/runtime/vm/code_patcher_arm64.cc b/runtime/vm/code_patcher_arm64.cc
index 166ee42d3a8d50fb4ce35bb961c8ca90b5014b9e..7b0afef646b834eb8ff43dd34959aae7b74fb7bf 100644
--- a/runtime/vm/code_patcher_arm64.cc
+++ b/runtime/vm/code_patcher_arm64.cc
@@ -37,7 +37,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 | « no previous file | runtime/vm/code_patcher_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698