From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 51ECD3944438; Wed, 18 Mar 2020 11:50:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 51ECD3944438 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1584532226; bh=Nip9BpY2Uzyqo8FnymIlWZLHrIC/rgJZVfKYZjsVMWM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=D1A9iUnqpFMpDmbAulkffjejs8c4+VwEy45cv5qYi/2U+cS5mPmaeLikUqGHo/5xb nv6Mm/aUbBKSmrKirDAjzJ01iu3oVPTNfw6UDX3kt+XSP148ZLFi11i+iknwKGe3Jo 3RYArWJvU6vKoeaJToEFIPCxib76QFzwBfshhVu0= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBjLzk0MjAxXSBhYXJjaDY077yaSUNFIGluIHRpbnkgY29k?= =?UTF-8?B?ZSBtb2RlbCBmb3IgaWxwMzI=?= Date: Wed, 18 Mar 2020 11:50:26 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 10.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2020 11:50:26 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D94201 --- Comment #2 from CVS Commits --- The master branch has been updated by Richard Sandiford : https://gcc.gnu.org/g:d91480dee934478063fe5945b73ff3c108e40a91 commit r10-7240-gd91480dee934478063fe5945b73ff3c108e40a91 Author: Duan bo Date: Wed Mar 18 10:18:39 2020 +0000 aarch64: Fix SYMBOL_TINY_GOT handling for ILP32 [PR94201] The SYMBOL_TINY_GOT case in aarch64_load_symref_appropriately was missing support for ILP32. This caused an ICE on the testcase. 2020-03-18 Duan bo gcc/ PR target/94201 * config/aarch64/aarch64.md (ldr_got_tiny): Delete. (@ldr_got_tiny_): New pattern. (ldr_got_tiny_sidi): Likewise. * config/aarch64/aarch64.c (aarch64_load_symref_appropriately):= Use them to handle SYMBOL_TINY_GOT for ILP32. gcc/testsuite/ PR target/94201 * gcc.target/aarch64/pr94201.c=C3=AF=C2=BCNew test.=