diff options
Diffstat (limited to 'tools/perf/util/dump-insn.c')
-rw-r--r-- | tools/perf/util/dump-insn.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/perf/util/dump-insn.c b/tools/perf/util/dump-insn.c index 10988d3de7ce..2bd8585db93c 100644 --- a/tools/perf/util/dump-insn.c +++ b/tools/perf/util/dump-insn.c | |||
@@ -13,3 +13,11 @@ const char *dump_insn(struct perf_insn *x __maybe_unused, | |||
13 | *lenp = 0; | 13 | *lenp = 0; |
14 | return "?"; | 14 | return "?"; |
15 | } | 15 | } |
16 | |||
17 | __weak | ||
18 | int arch_is_branch(const unsigned char *buf __maybe_unused, | ||
19 | size_t len __maybe_unused, | ||
20 | int x86_64 __maybe_unused) | ||
21 | { | ||
22 | return 0; | ||
23 | } | ||