mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-29 11:37:59 -04:00
dwarf-regs.c includes an arch-specific dwarf-regs-table.h for several architectures. This pulls in different definitions of REG_DWARFNUM_NAME and causes compiler warnings for W=1 builds. In file included from util/dwarf-regs.c:23: .../dwarf-regs-table.h:5: error: "REG_DWARFNUM_NAME" redefined [-Werror] #define REG_DWARFNUM_NAME(reg, idx) [idx] = reg Undefine REG_DWARFNUM_NAME before each new definition. Suggested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Martin Kaiser <martin@kaiser.cx> Cc: Ian Rogers <irogers@google.com> Cc: Namhyung Kim <namhyung@kernel.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
30 lines
923 B
C
30 lines
923 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifdef DEFINE_DWARF_REGSTR_TABLE
|
|
/* This is included in perf/util/dwarf-regs.c */
|
|
|
|
/*
|
|
* Reference:
|
|
* http://refspecs.linuxfoundation.org/ELF/ppc64/PPC-elf64abi-1.9.html
|
|
* http://refspecs.linux-foundation.org/elf/elfspec_ppc.pdf
|
|
*/
|
|
#undef REG_DWARFNUM_NAME
|
|
#define REG_DWARFNUM_NAME(reg, idx) [idx] = "%" #reg
|
|
|
|
static const char * const powerpc_regstr_tbl[] = {
|
|
"%gpr0", "%gpr1", "%gpr2", "%gpr3", "%gpr4",
|
|
"%gpr5", "%gpr6", "%gpr7", "%gpr8", "%gpr9",
|
|
"%gpr10", "%gpr11", "%gpr12", "%gpr13", "%gpr14",
|
|
"%gpr15", "%gpr16", "%gpr17", "%gpr18", "%gpr19",
|
|
"%gpr20", "%gpr21", "%gpr22", "%gpr23", "%gpr24",
|
|
"%gpr25", "%gpr26", "%gpr27", "%gpr28", "%gpr29",
|
|
"%gpr30", "%gpr31",
|
|
REG_DWARFNUM_NAME(msr, 66),
|
|
REG_DWARFNUM_NAME(ctr, 109),
|
|
REG_DWARFNUM_NAME(link, 108),
|
|
REG_DWARFNUM_NAME(xer, 101),
|
|
REG_DWARFNUM_NAME(dar, 119),
|
|
REG_DWARFNUM_NAME(dsisr, 118),
|
|
};
|
|
|
|
#endif
|