aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorLuis Machado <luis.machado@arm.com>2022-07-04 10:43:25 +0100
committerLuis Machado <luis.machado@arm.com>2022-07-10 15:45:43 +0100
commit0556ff7376a2869e1eefd7e0b3b97bd454b5b5c3 (patch)
treeeab47ab9e031e6e616b5958548d9858332f7cf8d /gdb
parent74baa6cd1c8168705a39d45f317cc9f79e31ac3a (diff)
downloadgdb-0556ff7376a2869e1eefd7e0b3b97bd454b5b5c3.zip
gdb-0556ff7376a2869e1eefd7e0b3b97bd454b5b5c3.tar.gz
gdb-0556ff7376a2869e1eefd7e0b3b97bd454b5b5c3.tar.bz2
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.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/arch/aarch64-mte-linux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/arch/aarch64-mte-linux.h b/gdb/arch/aarch64-mte-linux.h
index d158926..fed91bb 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 <http://www.gnu.org/licenses/>. */
-#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 */