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

Unified Diff: runtime/vm/disassembler_arm64.cc

Issue 909253002: Fix a windows build issue (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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 | « no previous file | runtime/vm/flags.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/disassembler_arm64.cc
===================================================================
--- runtime/vm/disassembler_arm64.cc (revision 43665)
+++ runtime/vm/disassembler_arm64.cc (working copy)
@@ -375,7 +375,7 @@
const uint64_t imm = instr->ImmLogical();
buffer_pos_ += OS::SNPrint(current_position_in_buffer(),
remaining_size_in_buffer(),
- "0x%"Px64,
+ "0x%" Px64,
imm);
return 6;
} else {
@@ -527,7 +527,7 @@
}
buffer_pos_ += OS::SNPrint(current_position_in_buffer(),
remaining_size_in_buffer(),
- "0x%"Px64,
+ "0x%" Px64,
imm);
return ret;
} else {
@@ -557,7 +557,7 @@
const int64_t dest = pc + off;
buffer_pos_ += OS::SNPrint(current_position_in_buffer(),
remaining_size_in_buffer(),
- "0x%"Px64,
+ "0x%" Px64,
dest);
} else {
ASSERT(STRING_STARTS_WITH(format, "pcldr"));
@@ -566,7 +566,7 @@
const int64_t dest = pc + off;
buffer_pos_ += OS::SNPrint(current_position_in_buffer(),
remaining_size_in_buffer(),
- "0x%"Px64,
+ "0x%" Px64,
dest);
}
return 5;
« no previous file with comments | « no previous file | runtime/vm/flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698