summaryrefslogtreecommitdiff
path: root/tools/perf/util/annotate-arch/annotate-arc.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/annotate-arch/annotate-arc.c')
-rw-r--r--tools/perf/util/annotate-arch/annotate-arc.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/perf/util/annotate-arch/annotate-arc.c b/tools/perf/util/annotate-arch/annotate-arc.c
new file mode 100644
index 000000000000..170103e383a4
--- /dev/null
+++ b/tools/perf/util/annotate-arch/annotate-arc.c
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: GPL-2.0
+#include <linux/compiler.h>
+#include <linux/zalloc.h>
+#include "../disasm.h"
+
+const struct arch *arch__new_arc(const struct e_machine_and_e_flags *id,
+ const char *cpuid __maybe_unused)
+{
+ struct arch *arch = zalloc(sizeof(*arch));
+
+ if (!arch)
+ return NULL;
+
+ arch->name = "arc";
+ arch->id = *id;
+ arch->objdump.comment_char = ';';
+ return arch;
+}