From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1585) id 78B7B385828E; Sun, 10 Jul 2022 14:46:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 78B7B385828E Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Luis Machado To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Fix include guard naming for arch/aarch64-mte-linux.h X-Act-Checkin: binutils-gdb X-Git-Author: Luis Machado X-Git-Refname: refs/heads/master X-Git-Oldrev: 74baa6cd1c8168705a39d45f317cc9f79e31ac3a X-Git-Newrev: 0556ff7376a2869e1eefd7e0b3b97bd454b5b5c3 Message-Id: <20220710144615.78B7B385828E@sourceware.org> Date: Sun, 10 Jul 2022 14:46:15 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2022 14:46:15 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D0556ff7376a2= 869e1eefd7e0b3b97bd454b5b5c3 commit 0556ff7376a2869e1eefd7e0b3b97bd454b5b5c3 Author: Luis Machado Date: Mon Jul 4 10:43:25 2022 +0100 Fix include guard naming for arch/aarch64-mte-linux.h =20 It should be ARCH_AARCH64_MTE_LINUX_H as opposed to ARCH_AARCH64_LINUX_= H. Diff: --- gdb/arch/aarch64-mte-linux.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 . = */ =20 -#ifndef ARCH_AARCH64_LINUX_H -#define ARCH_AARCH64_LINUX_H +#ifndef ARCH_AARCH64_MTE_LINUX_H +#define ARCH_AARCH64_MTE_LINUX_H =20 #include "gdbsupport/common-defs.h" =20 @@ -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); =20 -#endif /* ARCH_AARCH64_LINUX_H */ +#endif /* ARCH_AARCH64_MTE_LINUX_H */