From 646ce0056ed84bcc71d52cb07c61d0bf331f91c3 Mon Sep 17 00:00:00 2001 From: Lulu Cheng Date: Wed, 28 Sep 2022 16:35:06 +0800 Subject: [PATCH] LoongArch: Fixed a typo in the comment information of the function loongarch_asan_shadow_offset. gcc/ChangeLog: * config/loongarch/loongarch.cc (loongarch_asan_shadow_offset): Fixed typo in "asan_mapping.h". --- gcc/config/loongarch/loongarch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/loongarch/loongarch.cc b/gcc/config/loongarch/loongarch.cc index 98c0e26cdb94..e9ba3374e355 100644 --- a/gcc/config/loongarch/loongarch.cc +++ b/gcc/config/loongarch/loongarch.cc @@ -6472,7 +6472,7 @@ static unsigned HOST_WIDE_INT loongarch_asan_shadow_offset (void) { /* We only have libsanitizer support for LOONGARCH64 at present. - This value is taken from the file libsanitizer/asan/asan_mappint.h. */ + This value is taken from the file libsanitizer/asan/asan_mapping.h. */ return TARGET_64BIT ? (HOST_WIDE_INT_1 << 46) : 0; } -- 2.47.2