From: Luis Machado Date: Mon, 4 Jul 2022 09:43:25 +0000 (+0100) Subject: Fix include guard naming for arch/aarch64-mte-linux.h X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0556ff7376a2869e1eefd7e0b3b97bd454b5b5c3;p=binutils-gdb.git Fix include guard naming for arch/aarch64-mte-linux.h It should be ARCH_AARCH64_MTE_LINUX_H as opposed to ARCH_AARCH64_LINUX_H. --- diff --git a/gdb/arch/aarch64-mte-linux.h b/gdb/arch/aarch64-mte-linux.h index d158926feff..fed91bbf01f 100644 --- a/gdb/arch/aarch64-mte-linux.h +++ b/gdb/arch/aarch64-mte-linux.h @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#ifndef ARCH_AARCH64_LINUX_H -#define ARCH_AARCH64_LINUX_H +#ifndef ARCH_AARCH64_MTE_LINUX_H +#define ARCH_AARCH64_MTE_LINUX_H #include "gdbsupport/common-defs.h" @@ -71,4 +71,4 @@ extern CORE_ADDR aarch64_mte_set_ltag (CORE_ADDR address, CORE_ADDR tag); It is always possible to get the logical tag. */ extern CORE_ADDR aarch64_mte_get_ltag (CORE_ADDR address); -#endif /* ARCH_AARCH64_LINUX_H */ +#endif /* ARCH_AARCH64_MTE_LINUX_H */