repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git]
/
tools
/
perf
/
util
/
dump-insn.c
blob
10988d3de7cec8940f3e4904cdb537a6f32cc690
1
// SPDX-License-Identifier: GPL-2.0
2
#include <linux/compiler.h>
3
#include
"dump-insn.h"
4
5
/* Fallback code */
6
7
__weak
8
const char
*
dump_insn
(
struct
perf_insn
*
x __maybe_unused
,
9
u64 ip __maybe_unused
,
u8
*
inbuf __maybe_unused
,
10
int
inlen __maybe_unused
,
int
*
lenp
)
11
{
12
if
(
lenp
)
13
*
lenp
=
0
;
14
return
"?"
;
15
}