From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7877) id D8DDB3858424; Wed, 28 Sep 2022 08:44:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D8DDB3858424 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664354693; bh=xRHM6V9JlTKkSap2pT/FjcEeaorrUoYQrhilCArI/vE=; h=From:To:Subject:Date:From; b=m5vI5yNhzqhOvAIaEnv97XxPGFlmcSyGi5ulcf3xejSZi9lz07Dsqzy4jMAirAAFn 2QTEfCTm4KW1JQPeFeDk5Qqor+is7R8ZhEIjv4NOD4yR0uf08DdVIjMMsVnZF6dk9W eHeFHncM5oJKKMDdeEt5UhNDcAgh+BEGfXuETBMY= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: LuluCheng To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-2912] LoongArch: Fixed a typo in the comment information of the function loongarch_asan_shadow_offset. X-Act-Checkin: gcc X-Git-Author: Lulu Cheng X-Git-Refname: refs/heads/master X-Git-Oldrev: 175a89d12392acd9cb09e56acafee6fcf2366392 X-Git-Newrev: 646ce0056ed84bcc71d52cb07c61d0bf331f91c3 Message-Id: <20220928084453.D8DDB3858424@sourceware.org> Date: Wed, 28 Sep 2022 08:44:53 +0000 (GMT) List-Id: https://gcc.gnu.org/g:646ce0056ed84bcc71d52cb07c61d0bf331f91c3 commit r13-2912-g646ce0056ed84bcc71d52cb07c61d0bf331f91c3 Author: Lulu Cheng Date: Wed Sep 28 16:35:06 2022 +0800 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: --- 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 98c0e26cdb9..e9ba3374e35 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; }