mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 11:26:19 +00:00
36 lines
925 B
Diff
36 lines
925 B
Diff
diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c
|
|
index 6c8575e182ed..466a3a68f5cd 100644
|
|
--- a/tools/perf/util/annotate.c
|
|
+++ b/tools/perf/util/annotate.c
|
|
@@ -1677,6 +1677,18 @@ static int dso__disassemble_filename(struct dso *dso, char *filename, size_t fil
|
|
#include <bfd.h>
|
|
#include <dis-asm.h>
|
|
|
|
+static int fprintf_styled(void *, enum disassembler_style, const char* fmt, ...)
|
|
+{
|
|
+ va_list args;
|
|
+ int r;
|
|
+
|
|
+ va_start(args, fmt);
|
|
+ r = vprintf(fmt, args);
|
|
+ va_end(args);
|
|
+
|
|
+ return r;
|
|
+}
|
|
+
|
|
static int symbol__disassemble_bpf(struct symbol *sym,
|
|
struct annotate_args *args)
|
|
{
|
|
@@ -1719,7 +1731,8 @@ static int symbol__disassemble_bpf(struct symbol *sym,
|
|
goto out;
|
|
}
|
|
init_disassemble_info(&info, s,
|
|
- (fprintf_ftype) fprintf);
|
|
+ (fprintf_ftype) fprintf,
|
|
+ fprintf_styled);
|
|
|
|
info.arch = bfd_get_arch(bfdf);
|
|
info.mach = bfd_get_mach(bfdf);
|
|
--
|
|
2.30.2
|