From 99f6fdd9eb60f5b8b9b172b1b2cfa627be566a9d Mon Sep 17 00:00:00 2001 From: Andrew Burgess Date: Mon, 18 Nov 2019 12:13:24 +0000 Subject: binutils: Make some functions static in dwarf.c The architecture specific register name initialisation routines no longer need to be externally visible, so make them static. binutils/ChangeLog: * dwarf.c (init_dwarf_regnames_i386): Make static. (init_dwarf_regnames_iamcu): Make static. (init_dwarf_regnames_x86_64): Make static. (init_dwarf_regnames_aarch64): Make static. (init_dwarf_regnames_s390): Make static. (init_dwarf_regnames_riscv): Make static. * dwarf.h (init_dwarf_regnames_i386): Delete declaration. (init_dwarf_regnames_iamcu): Delete declaration. (init_dwarf_regnames_x86_64): Delete declaration. (init_dwarf_regnames_aarch64): Delete declaration. (init_dwarf_regnames_s390): Delete declaration. (init_dwarf_regnames_riscv): Delete declaration. Change-Id: I9e350f76f98f46e9e3dd88d502f2a2a83e44cb36 --- binutils/dwarf.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'binutils/dwarf.c') diff --git a/binutils/dwarf.c b/binutils/dwarf.c index a770c57..fc73fa7 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -7464,14 +7464,14 @@ static const char *const dwarf_regnames_iamcu[] = NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL /* 93 - 100 */ }; -void +static void init_dwarf_regnames_i386 (void) { dwarf_regnames = dwarf_regnames_i386; dwarf_regnames_count = ARRAY_SIZE (dwarf_regnames_i386); } -void +static void init_dwarf_regnames_iamcu (void) { dwarf_regnames = dwarf_regnames_iamcu; @@ -7510,7 +7510,7 @@ static const char *const dwarf_regnames_x86_64[] = "k0", "k1", "k2", "k3", "k4", "k5", "k6", "k7" }; -void +static void init_dwarf_regnames_x86_64 (void) { dwarf_regnames = dwarf_regnames_x86_64; @@ -7537,7 +7537,7 @@ static const char *const dwarf_regnames_aarch64[] = "z24", "z25", "z26", "z27", "z28", "z29", "z30", "z31", }; -void +static void init_dwarf_regnames_aarch64 (void) { dwarf_regnames = dwarf_regnames_aarch64; @@ -7561,7 +7561,7 @@ static const char *const dwarf_regnames_s390[] = "v24", "v26", "v28", "v30", "v25", "v27", "v29", "v31", }; -void +static void init_dwarf_regnames_s390 (void) { dwarf_regnames = dwarf_regnames_s390; @@ -7582,7 +7582,7 @@ static const char *const dwarf_regnames_riscv[] = "ft8", "ft9", "ft10", "ft11" /* 60 - 63 */ }; -void +static void init_dwarf_regnames_riscv (void) { dwarf_regnames = dwarf_regnames_riscv; -- cgit v1.1