summaryrefslogtreecommitdiff
path: root/tools/perf
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/util/disasm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/perf/util/disasm.h b/tools/perf/util/disasm.h
index 2793d48aa04e..6a1905f9d4fc 100644
--- a/tools/perf/util/disasm.h
+++ b/tools/perf/util/disasm.h
@@ -18,22 +18,22 @@ struct type_state;
struct disasm_line;
struct e_machine_and_e_flags {
- uint16_t e_machine;
uint32_t e_flags;
+ uint16_t e_machine;
};
struct arch {
- /** @id: ELF machine and flags associated with arch. */
- struct e_machine_and_e_flags id;
/** @name: name such as "x86" or "powerpc". */
const char *name;
const struct ins *instructions;
size_t nr_instructions;
size_t nr_instructions_allocated;
- bool sorted_instructions;
const char *insn_suffix;
unsigned int model;
unsigned int family;
+ /** @id: ELF machine and flags associated with arch. */
+ struct e_machine_and_e_flags id;
+ bool sorted_instructions;
struct {
char comment_char;
char skip_functions_char;