From: Lulu Cheng Date: Wed, 28 Sep 2022 08:35:06 +0000 (+0800) Subject: LoongArch: Fixed a typo in the comment information of the function loongarch_asan_sha... X-Git-Tag: basepoints/gcc-14~4295 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=646ce0056ed84bcc71d52cb07c61d0bf331f91c3;p=thirdparty%2Fgcc.git 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". --- 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; }