]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix include guard naming for arch/aarch64-mte-linux.h
authorLuis Machado <luis.machado@arm.com>
Mon, 4 Jul 2022 09:43:25 +0000 (10:43 +0100)
committerLuis Machado <luis.machado@arm.com>
Sun, 10 Jul 2022 14:45:43 +0000 (15:45 +0100)
It should be ARCH_AARCH64_MTE_LINUX_H as opposed to ARCH_AARCH64_LINUX_H.

gdb/arch/aarch64-mte-linux.h

index d158926feff117679e3bd01a8ff886b40a6f04a9..fed91bbf01f69a559ebd7fa7156b3331322a73f3 100644 (file)
@@ -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 */