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

Unified Diff: runtime/vm/gdbjit_linux.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/gdbjit_android.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/gdbjit_linux.cc
diff --git a/runtime/vm/gdbjit_linux.cc b/runtime/vm/gdbjit_linux.cc
index 9fac94ef5e20c8c3eaa79f80787454f3683d0cc9..32f7cd71f19074c6d84e084dc3e78f61e84d3741 100644
--- a/runtime/vm/gdbjit_linux.cc
+++ b/runtime/vm/gdbjit_linux.cc
@@ -16,9 +16,9 @@ extern "C" {
} jit_actions_t;
struct jit_code_entry {
- struct jit_code_entry *next_entry;
- struct jit_code_entry *prev_entry;
- const char *symfile_addr;
+ struct jit_code_entry* next_entry;
+ struct jit_code_entry* prev_entry;
+ const char* symfile_addr;
uint64_t symfile_size;
};
@@ -27,8 +27,8 @@ extern "C" {
/* This type should be jit_actions_t, but we use uint32_t
to be explicit about the bitwidth. */
uint32_t action_flag;
- struct jit_code_entry *relevant_entry;
- struct jit_code_entry *first_entry;
+ struct jit_code_entry* relevant_entry;
+ struct jit_code_entry* first_entry;
};
/* GDB puts a breakpoint in this function. */
« no previous file with comments | « runtime/vm/gdbjit_android.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698