]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/perf/util/dump-insn.c
Merge branch 'work.__copy_to_user' of git://git.kernel.org/pub/scm/linux/kernel/git...
[karo-tx-linux.git] / tools / perf / util / dump-insn.c
1 #include <linux/compiler.h>
2 #include "dump-insn.h"
3
4 /* Fallback code */
5
6 __weak
7 const char *dump_insn(struct perf_insn *x __maybe_unused,
8                       u64 ip __maybe_unused, u8 *inbuf __maybe_unused,
9                       int inlen __maybe_unused, int *lenp)
10 {
11         if (lenp)
12                 *lenp = 0;
13         return "?";
14 }