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

Unified Diff: runtime/vm/disassembler_ia32.cc

Issue 10896054: Format pointer type declarations more consistently. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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/ast_printer.cc ('k') | runtime/vm/gdbjit_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/disassembler_ia32.cc
diff --git a/runtime/vm/disassembler_ia32.cc b/runtime/vm/disassembler_ia32.cc
index 37691249dedb8340315936f7d5cb36fc5bec1b4b..77c99c273c40fe1a8e4877bfdae55a3f35f7e301 100644
--- a/runtime/vm/disassembler_ia32.cc
+++ b/runtime/vm/disassembler_ia32.cc
@@ -955,7 +955,7 @@ void X86Decoder::CheckPrintStop(uint8_t* data) {
// Recognize stop pattern.
if (*reinterpret_cast<uint8_t*>(data + 5) == 0xCC) {
Print(" STOP:'");
- const char* text = *reinterpret_cast<const char **>(data + 1);
+ const char* text = *reinterpret_cast<const char**>(data + 1);
Print(text);
Print("'");
}
« no previous file with comments | « runtime/vm/ast_printer.cc ('k') | runtime/vm/gdbjit_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698