aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/loongarch
diff options
context:
space:
mode:
authorLulu Cheng <chenglulu@loongson.cn>2022-09-28 16:35:06 +0800
committerLulu Cheng <chenglulu@loongson.cn>2022-09-28 16:44:27 +0800
commit646ce0056ed84bcc71d52cb07c61d0bf331f91c3 (patch)
treeb0ca016675cc241bcee797bfa0bc70e0b4dc9cfe /gcc/config/loongarch
parent175a89d12392acd9cb09e56acafee6fcf2366392 (diff)
downloadgcc-646ce0056ed84bcc71d52cb07c61d0bf331f91c3.zip
gcc-646ce0056ed84bcc71d52cb07c61d0bf331f91c3.tar.gz
gcc-646ce0056ed84bcc71d52cb07c61d0bf331f91c3.tar.bz2
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".
Diffstat (limited to 'gcc/config/loongarch')
-rw-r--r--gcc/config/loongarch/loongarch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/loongarch/loongarch.cc b/gcc/config/loongarch/loongarch.cc
index 98c0e26..e9ba337 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;
}