instructions.c (6f50fa2a6f1395ad5f59ce7b87730f1f3ea19d76) | instructions.c (f2a39fe84901df2b3d1bec3459b65cee3e8db57c) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2#include <linux/compiler.h> 3#include <linux/zalloc.h> 4#include <sys/types.h> 5#include <regex.h> | 1// SPDX-License-Identifier: GPL-2.0 2#include <linux/compiler.h> 3#include <linux/zalloc.h> 4#include <sys/types.h> 5#include <regex.h> |
6#include <stdlib.h> |
|
6 7struct arm_annotate { 8 regex_t call_insn, 9 jump_insn; 10}; 11 12static struct ins_ops *arm__associate_instruction_ops(struct arch *arch, const char *name) 13{ --- 49 unchanged lines hidden --- | 7 8struct arm_annotate { 9 regex_t call_insn, 10 jump_insn; 11}; 12 13static struct ins_ops *arm__associate_instruction_ops(struct arch *arch, const char *name) 14{ --- 49 unchanged lines hidden --- |